Ramon Ahnert
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Translate Plugin into FrenchOk. I had thought that your plugin was in official repository.
Did you follow what’s in “Internationalization” chapter of Plugin Handbook (developer.wordpress.org/plugins/internationalization/) ?
Forum: Everything else WordPress
In reply to: Translate Plugin into FrenchYou may translate plugins in https://translate.wordpress.org. That’s the easy way to translate WordPress things.
See more about translate at Translator’s Handbook.
- This reply was modified 9 years, 6 months ago by Ramon Ahnert.
Forum: Requests and Feedback
In reply to: Easy fix: in Appearance/Menus/Custom Links, add target=”_blank”Hi @fxpeters.
It’s already possible to do that.
In Menu > Appearance, click in “Screen Options” (at right top of the page) and check the “Link Target” option. So the option “Open link in a new tab” is shown.
Forum: Fixing WordPress
In reply to: Widget Text FormatingHi @bruza005.
You may do that in style.css file (theme folder).
Forum: Plugins
In reply to: [WooCommerce] “Out of stock” Label – Not showingHi @reijopuhm.
In WooCommerce > Settings > Products > Inventory, check the field “Enable out of stock notifications”
Forum: Fixing WordPress
In reply to: REST Api in WP 4.7Hi @gioma68.
The correct URL is http://oursite.com/wp-json/ (and not “jons”).
Forum: Themes and Templates
In reply to: TitlesHi @jkblue.
You may use the filter “the_title” in functions.php.
add_filter( 'the_title', '__return_false' );References:
the_title | HookHi @malkah.
You need to look in functions.php file (theme folder) the functions “wp_enqueue_script()” and “wp_enqueue_style()”.
If you don’t find anything, look in header.php file..
References:
wp_enqueue_script()
wp_enqueue_style()Forum: Fixing WordPress
In reply to: I can’t find in reading settingsHi @luisvaldesg.
In Settings >> Reading, the first field is “Front page displays”. So you may set to show your latest posts or a static page.
Forum: Themes and Templates
In reply to: Child themes and .PHP filesYes. Your code going to override all code (including future changes) of the parent theme.
Forum: Themes and Templates
In reply to: Child themes and .PHP filesHi @michelesidecar.
I think that the text below will help you:
If you want to change more than just the stylesheet, your child theme can override any file in the parent theme: simply include a file of the same name in the child theme directory, and it will override the equivalent file in the parent theme directory when your site loads. For instance, if you want to change the PHP code for the site header, you can include a header.php in your child theme’s directory, and that file will be used instead of the parent theme’s header.php.
References:
Child Theme << WordPress CodexForum: Fixing WordPress
In reply to: Header and Footer missing when using Static front pageFirst, a correction about what I said before: you need to look if the template file has the functions get_header() and get_footer(). Sorry.
It’s a theme specific question.
References:
Page TemplatesForum: Fixing WordPress
In reply to: bgcolor AttributeIn style.css (or another CSS) file you may put the code below
#content tr th { background-color: #fff !important; }Forum: Fixing WordPress
In reply to: Header and Footer missing when using Static front pageHi @customgt.
I guess that the template you chose doesn’t show the header and footer. Look if the template file has the functions wp_head() and wp_footer().
Forum: Fixing WordPress
In reply to: Fatal error: Cannot redeclare get_the_post_thumbnail_caption(Hi @wearegravity.
Two functions (one in WordPress and another in your theme) has the same name “get_the_post_thumbnail_caption()”.
The file “functions.php” of the theme need verify if the function already exist. Something like this:
if ( !function_exists( 'get_the_post_thumbnail_caption' ) ) { // ... do the work }Maybe update the theme via FTP resolve the problem.