maxi032
Forum Replies Created
-
I am using Pods 2.3.8
Thank you for your quick reply.
Under additional field options I have:Field type: Single select
File uploader: Attachments (WP Media Library)
Attachments Default tab: upload file
Editable title: yes
Restrict file type: other
File extensions: pdf,doc,docxForum: Plugins
In reply to: [WP Popular Posts] unable to show thumbnailSolved the problem by specifying the width of the thumbnail. $instance[‘thumbnail’][‘active’] became 1. By default the width was 0.
Now I have another problem. It seems that the thumbnail showed is the second image of the post, not the first one and the image is very bluryForum: Themes and Templates
In reply to: [Celestial - Lite] Unable to translate a few stringsI am using a child theme of version 1.5
It turns out that the theme translation file need to be placed under
/wp-content/languages/themes/ and the name of the file needs to be celestial-fr_FR.mo not celestial.moForum: Themes and Templates
In reply to: [Celestial - Lite] Unable to translate a few stringsCan you guys make sure that the text domain is loaded correctly?
Forum: Plugins
In reply to: [Theme My Login] [Plugin: Theme My Login] Permalink usageI have a similar problem too. No matter what I set the permalinks to, the register or forgot password urls are always pointing to the_current_url?action=register&instance=1 or action=lostpassword&instance=1 where the_current_url is the page I am when I click on the links. Bassicaly it does not redirect to the permalinks.
Forum: Themes and Templates
In reply to: [Celestial - Lite] Template for forum?Thank you for your answer. I found a solution. In page.php from the theme just below the get_header() I added
<?php if (get_theme_mod('blog_left') ) : // Use this layout if the blog left is selected ?> <?php if ( is_active_sidebar( 'sidebar-6' ) ) : ?> <div id="secondary" class="widget-area span3" role="complementary"> <div id="st-left" class="st-sidebar-list"> <?php dynamic_sidebar( 'sidebar-6' ); ?> </div> </div><!-- #secondary --> <?php endif;?> <php endif?> to add the left column and after that I replaced span12 with span9: <div id="primary" class="site-content span9">to make the content side narrow.