kumokumo
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Advanced Comment] Special characters error on email sent to adminHTML in Code New Comment Notification for Administrator:
<p>Hola!</p>
<p>Hubo un nuevo comentario en %sitename% (%siteurl%).</p>
<p>Estos son los datos recibidos de la página %post_title% :</p>
<p> </p>
<p>Contacto: %comment_author% <%comment_author_email%></p>
<p>Empresa : %custom_empresa%</p>
<p>Consulta:</p><p>%comment%</p>
<p> </p>
<p>Saludos!</p>
<p><img title=”La Casa de la Rotuladora” src=”http://www.casadelarotuladora.com.ar/wp-content/uploads/2016/05/la-casa-de-la-rotuladora.png” /></p>HTML received by Outlook
<p>Hola!</p>
<p>Hubo un nuevo comentario en %sitename% (%siteurl%).</p>
<p>Estos son los datos recibidos de la página %post_title% :</p>
<p>Â</p>
<p>Contacto: %comment_author% <%comment_author_email%></p>
<p>Empresa : %custom_empresa%</p>
<p>Consulta:</p><p>%comment%</p>
<p>Â</p>
<p>Saludos!</p>
<p><img title=”La Casa de la Rotuladora” src=”http://www.casadelarotuladora.com.ar/wp-content/uploads/2016/05/la-casa-de-la-rotuladora.png” /></p>Forum: Themes and Templates
In reply to: [HarmonUX Core] child theme@amruthasrinivasan you have to add this line of code in the functions.php of the theme:
wp_enqueue_style( 'child-style', '/wp-content/themes/harmonux-core-child/style.css' );Forum: Themes and Templates
In reply to: [HarmonUX Core] child themeI’m having the same issue. Any assitance on a fix?
EDIT:
I added a workaround until this is fixed. In the functions.php inside your child theme, you should have added the following code to load the parent theme’s style.css (accordind to Child Themes article in WP Codex):
add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles' );
function theme_enqueue_styles() {
wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );}
Right below
wp_enqueue_style, add anotherwp_enqueue_stylepointing to the style.css in your child theme.wp_enqueue_style( 'child-style', '/wp-content/themes/harmonux-core-child/style.css' );(I hardcoded the URI, but there must be better ways to do this. Research for it.)
Forum: Plugins
In reply to: [Front End Users] Registration not workingI’m having the same error with the ‘T’ error code description.
As long as I have another User registered, I get the ‘T’ error.
If I delete that user, I can use the form and it works perfectly.Maybe it’s not giving a new ID correctly?
Forum: Plugins
In reply to: [Front End Users] How to change languageThank GOD I found this post! I was going nuts about this! I checked the synthax in main.php in your plugin and it was OK to me.
I hope you find a fix to this, your plugin is awesome!
I have the same issue. Is there any info about this? Is this plugin being deleveloped?