satyaki
Forum Replies Created
-
Hi,
Thanks for your great support.
Finally I am able to do what I required with the modified code that you provided.
I feel elated as I know nothing of coding and could still achieve the feat with your help.
Thanks again.There are 2 more questions…………..
I want the Po.st share to be activated in my photo pages, where all my shareable pictures are. I am easily doing this with the code provided by you.Hence I do not need to install the wordpress plugin for ‘Po.st’ in my website. Is this the correct approach? or do I need to install the plugin as well?
Secondly, when I am sharing in Facebook, I wish a thumbnail image of the photo or the website icon to appear as well. How can I do it?
Warm regards
RoyForum: Fixing WordPress
In reply to: Social share buttons under each posts in a single pageHi Esmi,
Can you help me on this?
Hi,
Can you please help.
As this is my primary concern and without this I won’t be able to use your plugin.Please respond.
Forum: Fixing WordPress
In reply to: Social share buttons under each posts in a single pageI found out that in the ‘blog-in-blog’ plugin I have a post template.
and I modified it to include the social sharing button.Now the sharing buttons show up with every post on a single page.
But whenever I press the share button.
The link to the page is given out only.
and not the link to the individual post.How can I get a link back to the individual post.
Please, please, please help.
[No bumping. If it’s that urgent, consider hiring someone.]
Forum: Plugins
In reply to: [Digg Digg] Need the social share buttons in post excerptsHi,
I need to show the social sharing buttons below every posts shown in a single page.
I did some research and found that the ‘blog-in-blog’ plugin that I am using to show multiple posts in a single page has a option of modifying the post template.
The current post template that I am using is as shown below………
<!-- fragment of html for post template. This file will be deprecated... --> <!-- blog-in-blog Version: %bib_version% --> <div class="post"> <!-- Post Headline --> <div class="post-headline"> <h2> <a title="Permanent Link to %post_title%" rel="bookmark" href="%post_permalink%" target="_blank" id="%post_id%" >%post_title%</a> </h2> <small>%post_date%</small> </div> <!-- Post Body Copy --> <div class="post-bodycopy clearfix">%post_content%</div> </div>
How can I modify this template to include the Digg Digg social sharing buttons?
I am not much of a technical person and look forward to your help.
Please help me.Forum: Plugins
In reply to: [Digg Digg] Need the social share buttons in post excerptsHi Hullbay,
Thanks for your reply.
But I need to display all my posts from a category ID = 4 in a single page.
How can I do that without the plugin ‘Blog in Blog’?
Please help.
Forum: Plugins
In reply to: [Digg Digg] Need the social share buttons in post excerptsHi,
IS THE ISSUE ARISING DUE THE PLUGIN ‘BLOG-IN-BLOG’?
Please help me on this regard to solve my problem.
Forum: Plugins
In reply to: [Digg Digg] [Plugin: Digg Digg] How to display on each post on blog pageHi,
I am using the ‘blog-in-blog’ plugin and would like to have the share buttons appear below each posts on the same page.
How can it be done?
Please help.Forum: Fixing WordPress
In reply to: Interesting reversal of optionsResolved.
Forum: Fixing WordPress
In reply to: Interesting reversal of optionsSorry, I forgot to flag the thread as resolved.
Thanks to Keesiemeijer, the issue is resolved,
an hence I am flagging the thread as resolved.
Forum: Fixing WordPress
In reply to: Interesting reversal of optionsHi Keesiemeijer,
Thanks for the solution and support.
Thanks for taking out the time for me on Sunday.
I do really appreciate your help.Your solution has completely taken care of my problem.
Thanks once again for the sound technical help.Regards
SatyakiForum: Fixing WordPress
In reply to: Interesting reversal of optionsHi Keesiemeijer,
Please give my request a thought.
In the meanwhile have a wonderful weekend.Warm regards
SatyakiForum: Fixing WordPress
In reply to: Interesting reversal of optionsThanks Keesiemeijer,
One more thought on this…..
can I use another 2 more categories for showing the buttons using this?
How can I do that if I wish to add category ID = 18 & 19 in future.Forum: Fixing WordPress
In reply to: Interesting reversal of optionsHi Keesiemeijer,
As I told you, the mistake was from my side only.
Somehow, I had forgotten to erase the commands in the style.css file.
That is why in all the posts the buttons were blocked.
Silly me!!! ??Your suggestion is working like a charm.
Thanks for helping out a technically challenged person like me.On a lighter note, Tintin has always been my favorite character too.
Have a great day.??
Forum: Fixing WordPress
In reply to: Interesting reversal of optionsThe codes are working perfectly well for blocking the buttons in appearing from any posts.
However, for category ID = 17, the buttons are not appearing as well.
I have tweaked your codes to work for category ID =17.
I am not very good with technical stuff and this is the second time I am seeing the .php files.
Will you please check whether what I have done is correct?
I think I am doing some mistake from my side.This is the modified coding that I have used
for showing buttons only in category 17……………add_action( 'wp', 'specific_single_prev_next_links' ); function specific_single_prev_next_links(){ if ( is_single() ){ global $post; if(isset($post->ID) && $post->ID) { if(!has_term(17, 'category', $post->ID)) { remove_action( 'wp_head', 'single_prev_next_links' ); } } } }