akashgadiya
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The triple bar ≡ menu has suddenly disappearedHi @wbcomdesigns, I found another blog which uses the same theme and which has the triple bar menu icon intact. Could you please help me figure out what went wrong on my site and how to fix it.
The other blog site is this.
Thanks a lot.
Forum: Fixing WordPress
In reply to: The triple bar ≡ menu has suddenly disappearedHi @wbcomdesigns, it’s reflections.akashgadiya.com
If you hover over the top right corner, text description ‘Main Menu’ appears. The triple bar icon should have appeared on its right.
Forum: Fixing WordPress
In reply to: How to leverage browser cachingThanks @jcastaneda! I figured that W3 Cache plugin that was already installed had this feature, it was just waiting to be discovered and enabled. ??
Forum: Plugins
In reply to: Different Facebook Like Button on all PostsHello,
In that case, I think you should look for the index.php file, and insert the code in the <body> tag in there.
Hope it helps.
Forum: Plugins
In reply to: Different Facebook Like Button on all PostsAnytime ??
Forum: Plugins
In reply to: Different Facebook Like Button on all PostsHi,
1) Generate your like button code from here: FB Social Plugins
2) Paste the first code in the header.php file in your WP Editor, ideally after the body tag
3) Now the second code is what you have to play around with. The code looks like this:
<div class="fb-like" data-href="https://developers.facebook.com/docs/plugins/" data-layout="standard" data-action="like" data-show-faces="true" data-share="true"></div>
Go to your post and in the html editor, at the bottom of the post (or where ever you like the Like Button to be), paste the above code. Now replace the “https://developers.facebook.com/docs/plugins/” part with the link of your post (you can get it by clicking on the date of the post on facebook).
Update the post and the like button to the same post made on facebook should appear.
You’ll have to manually copy fb post link and paste in every post on WP. I haven’t found any easier way yet.
Let me know if you face any difficulties.
Cheers,
AkashForum: Plugins
In reply to: Different Facebook Like Button on all PostsI figured out a way of doing what I’ve been trying to do! It was simple, I was blind.
I had the same problem, error on line 457 in update.php file. Here’s what I did to fix it:
I changed file permission of ‘plugins’ folder under ‘wp-content’ folder from 555 to 755. It worked like a charm, I was able to install plugins again.
Forum: Plugins
In reply to: Different Facebook Like Button on all PostsAfter some research I figured that inserting html code in the WP post box was foolishness, I should have used a shortcode.
I scanned for some plugins that would generate a shortcode for the FB like button but I still did not figure out how to have a custom URL to Like button for each post.
This is the post URL on FB:
https://www.facebook.com/permalink.php?story_fbid=829844230433610&id=259253960825976
This is the post on my blog:
https://reflections.akashgadiya.com/cricket-ca-exams/?preview=true&preview_id=525&preview_nonce=cc4109ce92
Below the content on the blog, I wish to have a FB like button that would like the Post on the above link (and not my FB Page)
Is there a way I can generate a shortcode something like:
[fblike url="https://www.facebook.com/permalink.php?story_fbid=829844230433610&id=259253960825976"]
?Thanks in advance for any help.