wpmhweb
Forum Replies Created
-
Forum: Plugins
In reply to: [Ad Blocking Advisor] Ad bloccking statisticsThis is a good idea.
Forum: Plugins
In reply to: [Categories Images] Tag Template (tag.php)Thank you, thank you, thank you.
This is the approach that I was looking for. It works perfectly.
Thanks for the reply.
Forum: Plugins
In reply to: [Categories Images] Tag Template (tag.php)I’m having the same problem, the plugin is not showing the image for a post_tag.
I modified the teg.php file to display an image I uploaded to a particular TAG and it’s not showing up. It works well for categories but not for tags.
The foreach solution only list all the tags images, something I don’t need.
I hope someone posts a solution, I would really like this feature.
Thanks,
You guys are awesome! It worked perfectly.
Thank you very much.Thanks for the info. I was wondering the same question.
Now, is there a way to stop display counts on all the buttons offered in Jetpack without having to use CSS or having to create a share button, such as a function?Thanks,
Hello,
Sorry for the long time it took to reply.
Up until just now, I had the time to troubleshoot the problem with your insights. As it turns out, it had something to do with a function that loaded the wp_enqueue_script.
It seems to be working only if I move the function to the very top of the function.php file and adding “11” to the add_action( ‘wp_enqueue_scripts’, ‘menu_slider’, 11 );
Thanks,Apologizes for delay,
I temporary switched from Jetpack 3.6.1 to 3.7.2 and you can go to http://pureinfotech.com/ and click the hamburger menu button and will not work, the same will happen you go to categories and tags http://pureinfotech.com/category/mobile/, but everything works OK when you go to post example http://pureinfotech.com/2015/10/16/skype-new-feature-join-conversation-link/
Thanks for your help,
Hello,
Here is the link http://mmenu.frebsite.nl/Thanks,
Thank you very much.
Thanks,
I just reported the problem to them.Forum: Fixing WordPress
In reply to: Querying one post using ID with shortcode inside of a postHere is an update.
I created this function:
‘function pure_manual_related ($article) {
$post_id = $article;
$queried_post = get_post ($post_id);
echo ‘‘ . $queried_post->post_title . ‘‘;
}
add_shortcode(“pmr”, “pure_manual_related”);’Then I simply use this shortcode [pmr]postid[/pmr] and I can see the queried post on inside the post. The problem is that it places the new queried post at the beginning of the post instead of below the paragraph I intended the queried post to appear. What I’m doing wrong? And there is anyway to create another shortcode that looks like [pmr=postid]. Something more simplified?
Thanks,
Forum: Themes and Templates
In reply to: Wrap with UL the rest of $count postsI actually end up opening a div before elseif and I placed a closing div after wp_reset_postdata and it worked.
Like this:
‘<?php $count = 0; //Count starts to edit each post ?>
<?php $count++; ?>
<?php if ($count == 1) : ?>
post
<div>
<?php else : ?>
listing
<?php endif;?>
<?php endwhile; wp_reset_postdata(); ?>
</div>’Thanks,
Thanks,
Adjusting my code to fit in my theme. Let you know how it works.
Thank you for taking the time.I’m using _underscore framework to build the theme.
Did that already.
But how do query the feature image for each post and add it to the background-image property without having to resource to adding insistence style inside of a div?
I need to do it like is deployed in here: http://en.blog.wordpress.com/2014/10/28/photography-101-course/
Thanks,