ignotti
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [ProfitMag] ProfitMag Site not Displaying correctly on MobileForum: Themes and Templates
In reply to: [ProfitMag] ProfitMag Site not Displaying correctly on MobileThanks, hope doesn´t take to long. momentarily i just hide it with css.
Forum: Themes and Templates
In reply to: [ProfitMag] ProfitMag Site not Displaying correctly on MobileOK I found the problem!!!
to translate the “latest News” on top og the page, the best answer said to change, on function.php this lines.
if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): function chld_thm_cfg_parent_css() { wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css' ); } endif; add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css' );for
if ( !function_exists( 'chld_thm_cfg_parent_css' ) ): function chld_thm_cfg_parent_css() { wp_enqueue_style( 'chld_thm_cfg_parent', trailingslashit( get_template_directory_uri() ) . 'style.css' ); } endif; add_action( 'wp_enqueue_scripts', 'chld_thm_cfg_parent_css', 11 );Please note the nº 11 at the end.
If… i use this change on the .php file, the “Latest News” show correctly at the top of the page, but. The responsive part of the theme don´t work.
What can i do, i undertand the problem is in wich momment the child .css file is loaded, but can´t find a way around it.
any ideas?
Im´s sorry mi english is not perfect, but i´m a spanish speaker.
Forum: Themes and Templates
In reply to: [ProfitMag] ProfitMag Site not Displaying correctly on MobileWell, after banging my head on the wall… I decided to creat a new childtheme. and… it work!
I use Child Theme Configurator and rewrite some of my .css files and .php tricks.
Thanks A lot!
Forum: Themes and Templates
In reply to: [ProfitMag] ProfitMag Site not Displaying correctly on MobileHello WEn I try your solution and seems to me the problem is on my child theme. if i use the default theme it work propertli.
I will try to find out what might be causing the problem, and post the solution if i found it.
Forum: Themes and Templates
In reply to: [ProfitMag] Translate thingsmatrisque:
To translate “Related Post” you fil find it in content-single.php
….
`<div class=”related-post”>
<h2 class=”block-title”><span class=”bordertitle-red”></span><?php echo _e( ‘Noticias Relacionadas’, ‘profitmag’); ?></h2>
<?php profitmag_related_post( get_the_ID() ); ?>
<ul>`