JG99
Forum Replies Created
-
Problem solved! I see now that it doesn’t show on the home page, only the inner pages.
Forum: Plugins
In reply to: [Easy Popular Posts] favicon.ico issue: possible solution?I have found the favicon.ico post ID in my database tables. How can I exclude it from the post counts? What line should I edit in the plugin, and what should the code be on that line?
Now I have upgraded to version 1.6.2, thank you for making the changes.
My Pinterest code is as follows:
<a href="https://pinterest.com/pin/create/button/?url=%%EURL%%&media=%%PIMAGE%%&description=%%EDESC%%" class="pin-it-button" count-layout="horizontal">Pin It</a> <script type="text/javascript" src="https://assets.pinterest.com/js/pinit.js"></script>
You can see that I changed URL to EURL and DESC to EDESC. Should I also include TITLE or ETITLE in the code? If so, where should I put ETITLE?
Thank you very much for your help.
I just updated to version 1.6.1
I am not seeing the new tags (ETITLE and EDESC) that you mentioned in the post above. Right now my Pinterest button code is as follows:
<a href="https://pinterest.com/pin/create/button/?url=%%URL%%&media=%%PIMAGE%%&description=%%DESC%%" class="pin-it-button" count-layout="horizontal">Pin It</a> <script type="text/javascript" src="https://assets.pinterest.com/js/pinit.js"></script>
Will the above code work?
Also – I notice that when I use Pinterest with shortcode, the counter doesn’t work. But when I check “at the bottom of the post,” on the settings page, the counter works. Any ideas as to why I am having this issue?
Here is my shortcode, which appears at the top of my posts:
[social4i size="small" align="align-left"]
Wondering if it would be possible to integrate Pinterest in your plugin so that we don’t have to add the custom button code? Perhaps that way it would work better?
Thank you for your help, basicaly this is a great plugin. I hope you will continue to improve it!
Forum: Plugins
In reply to: [CalculatorPro Calculators] calculator not showing in sidebar widgetIt appears my security software is blocking the Calculator Pro script. Can you tell me the IP address so that I can create an exception? Thanks.
Forum: Plugins
In reply to: Top 10 plugin – stopped working after resetI have now changed to another plugin, Easy Popular Posts.
It’s working well for me.
Forum: Plugins
In reply to: How to add XML namespace attribute? Please Help!thanks very much
Forum: Themes and Templates
In reply to: How to move sidebar from right to left side?david, if you are still around, I got this from the developers of the theme:
We have used 960 Grid System in building the Themes, so when you want to flip the content, you might require to change the alpha and omega classes in the sidebar and content div.
Actually the process is a bit complex, there are lots of customization that would be involved in the HTML & PHP code in several files including single.php, blog.php, page.php etc and the style.css file as well. I suggest the best way for you would be to hire freelancer to accomplish that task.
But I feel like I am really close! Can you provide any more help?
Forum: Plugins
In reply to: Need help moving sidebar from right to left sideOK, I posted this on a different area of the forum – sorry to trouble you.
Forum: Themes and Templates
In reply to: How to move sidebar from right to left side?david, I really appreciate your help. This theme allows sidebar widgets, and as I said, they are ending up down at the bottom after making this change. I will play around with it as you say, and let you know how it goes. Kindly check back here in 24 hours or so if you can and I’ll be sure to post an update.
Can’t thank you enough for your kind attention, david!
Forum: Themes and Templates
In reply to: How to move sidebar from right to left side?david, thank you very much for your reply. I did as you said, and the sidebar is now on the left! That is the good news – the bad news is that the items in the sidebar now appear below the post itself (at the bottom of the page).
So there must be another small change to the CSS needed?
Forum: Plugins
In reply to: Need help moving sidebar from right to left sideCould someone please help me? This is really a big problem for me.
Forum: Themes and Templates
In reply to: How to remove Category counter and Meta from Sidebar?Thanks for your help!
Forum: Themes and Templates
In reply to: How to remove Category counter and Meta from Sidebar?I mean, this is really crazy! I have modified the sidebar.php file as follows, and I am STILL seeing both category counts and the META information!
<div id="sidebar"> <ul> <?php /* Widgetized sidebar, if you have the plugin installed. */ if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <li> <?php include (TEMPLATEPATH . '/searchform.php'); ?> </li> <!-- Author information is disabled per default. Uncomment and fill in your details if you want to use it. <li><h2>Author</h2> <p>A little something about you, the author. Nothing lengthy, just an overview.</p> </li> --> <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> <li><h2>Archives</h2> <ul> <?php wp_get_archives('type=monthly'); ?> </ul> </li> <?php wp_list_categories('show_count=0&title_li=<h2>Categories</h2>'); ?> <?php wp_list_bookmarks(); ?> <?php endif; ?> </ul> </div>
Forum: Fixing WordPress
In reply to: Sidebar not showing on posts – how can I change this?Yes, they both are, but it’s still not showing the sidebar anywhere but on the homepage:
Here is the single.php file:
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php _e('Permanent Link:'); ?> <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="entrytext"> <?php the_content('<p class="serif">'.__('Read the rest of this entry »').'</p>'); ?> <?php if (function_exists('gengo_link_pages')) : ?> <?php gengo_link_pages('<p><strong>'.__('Pages:').'</strong> ', '</p>', 'number'); ?> <?php else : ?> <?php link_pages('<p><strong>'.__('Pages:').'</strong> ', '</p>', 'number'); ?> <?php endif; ?> <p class="postmetadata alt"> <small> <?php printf(__('Filed under %3$s. Follow responses to this entry via the <a href="%4$s">RSS 2.0</a> feed.'), get_the_time(__('l, F jS, Y')), get_the_time(__('g:i a')), get_the_category_list(', '), get_bloginfo_rss('comments_rss2_url')); ?> <?php if (('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Both Comments and Pings are open printf(__('You can <a href="#respond">leave a response</a>, or <a href="%1$s">trackback</a> from your own site. '), trackback_url(false)); ?> <?php } elseif (!('open' == $post-> comment_status) && ('open' == $post->ping_status)) { // Only Pings are Open printf(__('Responses are currently closed, but you can <a href="%1$s">trackback</a> from your own site.'), trackback_url(false)); ?> <?php } elseif (('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Comments are open, Pings are not _e('You can skip to the end and leave a response. Pinging is currently not allowed.'); ?> <?php } elseif (!('open' == $post-> comment_status) && !('open' == $post->ping_status)) { // Neither Comments, nor Pings are open _e('Both comments and pings are currently closed.'); ?> <?php } edit_post_link(__('Edit this entry.'),'',''); ?> </small> </p> </div> </div> <?php comments_template(); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>
and the page.php file:
<?php get_header(); ?> <div id="content" class="narrowcolumn"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><?php the_title(); ?></h2> <div class="entrytext"> <?php the_content('<p class="serif">' . __('Read the rest of this page »') . '</p>'); ?> <?php if (function_exists('gengo_link_pages')) : ?> <?php gengo_link_pages('<p><strong>' . __('Pages:') . '</strong> ', '</p>', 'number'); ?> <?php else : ?> <?php link_pages('<p><strong>' . __('Pages:') . '</strong> ', '</p>', 'number'); ?> <?php endif; ?> </div> </div> <?php endwhile; endif; ?> <?php edit_post_link(__('Edit this entry.'), '<p>', '</p>'); ?> <?php comments_template(); ?> </div> <?php get_sidebar(); ?> <?php get_footer(); ?>