jacynthed
Forum Replies Created
-
Forum: Plugins
In reply to: [Polylang] Custom Post Types and Taxonomies not translatingIt’s not a pro feature as I don’t have the pro version and mine is enabled.
But the categories are not chosen from there as the only options I can check in the custom posts and taxonomies are:
FAQs
FAQ Categories
Media CategoriesJacynthe
Forum: Plugins
In reply to: [Polylang] how can I keep viewer on post when switching languages?Hmmm that is strange.
Yes you have them linked, so they technically should redirect directly to the post when you switch language. I just tested again from one of my posts and it went straight there.
What is the permalink option you have in your settings? If it’s different from mine maybe that could be it? Grasping at straws here because I just started using the plugin 2 days ago. LOL
My permalinks setting is set to post name.
Jacynthe
Forum: Plugins
In reply to: [Polylang] how can I keep viewer on post when switching languages?Hi Tanya,
Have you associated the posts in the different languages to one another? I’m asking because my site actually stays on the post in the translated language when I click so if yours doesn’t it might be something as simple as that?
Forum: Plugins
In reply to: [Polylang] “Read more button” and dates are not showing correctlyHi Locogallo.
I have no idea on the readmore button because even though I translated the string, it still shows it in English on my french version.
But for the date it’s rather easy.
Go to Settings / Languages / String Translations and look for the string that says F j, Y (in the date format). That would probably be towards the bottom of the strings list. Just change it in French to be j F, Y and there you have it. ??
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] I must be missing somethingThank you Gerkin. The tooltip override is a good feature to have, yes. I’m sure it’s just a simple thing that makes it so my base glossary doesn’t show up. In the meantime I just copied it to the “override” tag. ??
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] Version 2.1.1 gives internal server errorI’m sorry to say this but no, a fix was not released because if it had been I wouldn’t have that issue. The initial problem happened with 2.1.1… then 2.1.2 was released and I updated and still have an issue, albeit on a different line. but it’s not fixed.
It’s sad that your updates broke something that worked flawlessly.
Forum: Plugins
In reply to: [iThoughts Tooltip Glossary] Version 2.1.1 gives internal server errorupdated to version 2.1.2 and trying to activate says
Parse error: syntax error, unexpected ‘[‘ in /home/***/public_html/fitjacy-en/wp-content/plugins/ithoughts-tooltip-glossary/class/ithoughts_tt_gl-admin.class.php on line 654
So the patch does not seem to have fixed the plugin unfortunately. ??
Forum: Fixing WordPress
In reply to: Display posts from single category on blog page templateI think this would work
<?php get_template_part('system','header');?> <!--CONTENT--> <div class="content"> <?php if (have_posts()) : ?> <div class="breadcrumbs style-2"> <p style="text-indent: 5em;"> <?php echo __(' You are here:','xceleron');?> <?php if (function_exists('dimox_breadcrumbs')) dimox_breadcrumbs(); ?> <div class="t-social"> <?php if(of_get_option("facebook_link")!=null): ?><a href="<?php echo of_get_option("facebook_link");?>" class="fb"><img src="<?php bloginfo('template_directory');?>/img/fb-small.png" alt=""/><?php echo __('Like','xceleron');?></a><?php endif;?> <?php if(of_get_option("twitter_link")!=null): ?><a href="<?php echo of_get_option("twitter_link");?>"><img src="<?php bloginfo('template_directory');?>/img/twitter-small.png" alt=""/><?php echo __('Follow us','xceleron');?></a><?php endif;?> <a href="<?php get_bloginfo('rss2_url');?>"><img src="<?php bloginfo('template_directory');?>/img/rss-small.png" alt=""/><?php echo __('RSS feed','xceleron');?></a> </div> </div> <?php endif; ?> <div class="hAlign clearfix"> <div class="l-content"> <?php if (have_posts()) : query_posts('cat=5'); while (have_posts()) : the_post(); ?> <?php the_content();?> <?php echo do_shortcode('[blog]'); ?> <?php endwhile;endif; ?> </div> <div class="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar("BlOG SIDEBAR") ) : endif; ?> </div> </div> </div> </div> <!--END CONTENT--> <?php get_footer(); ?>