How to fix this "Blog Something is happening!"? - wordpress

How to fix this?
enter image description here
I run site health and it says
define('WP_AUTO_UPDATE_CORE', false);

Related

Logo is not changing

I'm working on a new website and the logo from the homepage is not changing.
My URL: http://sugubat.inbanat.ro/
The logo that I want to appear: https://sugubat.inbanat.ro/wp-content/uploads/2020/11/logo-sugubat-1.png
The logo that actually appears: https://sugubat.inbanat.ro/wp-content/uploads/2018/08/retina-logo-2.png
I've also delete The logo that actually appears from the Media section from WordPress... but nothing.
Have anybody had this problem? Can you help me????
you forget to mention https: at the beginning and you just mention the address of logo as //sugubat.inbanat.ro/wp-content/uploads/2018/08/retina-logo-2.png .
just change the address to:
https://sugubat.inbanat.ro/wp-content/uploads/2020/11/logo-sugubat-1.png

how to add brand name with image at facebook page share content

Sometimes we see some page post on my timeline, where website shareing link conatin a image, below part of image attach with a page brand name (i have atatch a image example below.). if you click on link you will go to the website page and you will not see the brand name with image. I think somehow this brand name added later by coding or other system. I am confirm, content uploader does not attach this brand name with image, it happen automaticaly.
there anyone please tell me the system nmae and how to do it? at word press how can do that? have any plugin or code? thanks in advance.
You have to add the meta property inside the header area of ​​your site. Please check below article to know more.
For Facebook
For Twitter
You can add meta properties like this.
add_action('wp_head','add_meta_tags');
function add_meta_tags() {
global $post;
echo '<meta property="og:title" content="'.$post->post_title.'" />';
// So on....
}

Strange Message Displaying on Wordpress

When I open the WordPress dashboard the following message is displaying at the top of the page:
index-php auto-fold admin-bar branch-5-4 version-5-4-1 admin-color-fresh locale-en-us no-customize-support no-svg">
I don't know what's going wrong. does anybody knows about it?

Facebook Share Wordpress Post on own wall

i want share on wordpress a special text on someones personal timeline if he clicks "share".
f.e i have: "oh god, iam pregnant"
exact this text i want post on my or his facebook timeline from the coded website. it should see as i or he typed this (no link to website, or anything, blank text) on facebook. its similiar to copy & paste, but share would be easier.
i found this, but this is static, and i work with wordpress and generate multiple random text for the user with posts.
<script type="text/javascript">
$(document).ready(function(){
$('#share_button').click(function(e){
e.preventDefault();
FB.ui(
{
method: 'feed',
name: 'This is the content of the "name" field.',
link: 'URL which you would like to share ',
picture: ‘URL of the image which is going to appear as thumbnail image in share dialogbox’,
caption: 'Caption like which appear as title of the dialog box',
description: 'Small description of the post',
message: ''
}
);
}
);
}
);
</script>
a plugin is great too
thank you
What you want to do is not allowed according to the platform policy:
Don't prefill captions, comments, messages, or the user message
parameter of posts with content a person didn’t create, even if the
person can edit or remove the content before sharing
Even if it would be allowed, the only way to do this is to authorize a user with the publish_actions permission and use the API to post to the user wall. You would not get publish_actions approved for this, so it´s not possible at all.
Just to make this clear: The message must be 100% user generated.

Link to my wordpress blog in main menu is "dead"?

I 've created a website www.milan-kresojevic.com.Everything is fine and now installed wordpress blog plugin to my server and started building a blog to.You can notice that when you come to the main menu on this website,and right click on the "Blog" button,you can open it in new window so the link seems to be working.BUT...
When you left-click on in as every normal link- it doesn't work :/
This is a bit confusing,and I've tried changing it in a zillion ways,and it is still the same.
Right-click "open in a new window" works,and left-click doesnt :(
Does anybody have an idea how should I change it?
Thanks in advance...
:)
SOLVED!Like this:
Ok,I ma going to show you what I did,so that this post might actually help someone else :)
My HTML nav code was this:
http://imageshack.com/a/img850/4371/40g8.png
So I listened to the nice man above me :)
And did this with the github source:
add the imageshack url in front of this I can not post 2 links as a new user :/a/img850/6605/uxs5.png
Found this on the github and my regular jquery.nav.js with this right here :https://github.com/davist11/jQuery-One-Page-Nav,
and added some JS code at the bottom of my page :
$(document).ready(function() {
$('#nav').onePageNav({
filter: ':not(.external)',
});
});
And that was it :) All works now,and I hope this is detailed enough to help someone else :)
your problem is the jquery.nav plugin. which expects only links linking to anchors on the page. try adding the class 'external' to the specific items and it should open the link as expected.

Resources