Hi
I got some issues after the latest update of the theme
the logo is gone and even after I re-attached it its still nowhere to be seen
The read more at the slider changed back to read more from my translation to swedish : Läs mer
The drop down menue started to ignore the color-changes and whent fron green background to purple on hoovering
movin
March 14, 2017, 12:39pm
2
Hi @gregorivaletti ,
Sorry to hear of the problem you are having.
Could you please share me your site URL where it’s happening so that i can troubleshoot it?
Best Regards,
Movin
Hi!
Thanks for the respons, the site the issues appears on is http://www.salomontolstoy.se
movin
March 15, 2017, 10:18am
4
This can be child theme issue on your site so to confirm it just temporary use the Activello theme instead of child theme on your site. If everything works fine then it’s your child theme issue so just share me your child theme so that i can troubleshoot it.
Hi
Thanks for the help, I tried to deactivate the childtheme and so but the issues still remained
regards
movin
March 17, 2017, 11:14am
6
1) the logo is gone and even after I re-attached it its still nowhere to be seen
To make the logo work please use the solutions posted in the following topics.
https://colorlibsupport.com/t/logo-not-showing/#post-90961
https://colorlibsupport.com/t/huge-problem-with-website-after-theme-update/#post-90771
2) The read more at the slider changed back to read more from my translation to swedish : Läs mer
Please change it again using this plugin Say what? – WordPress plugin | WordPress.org or using the solution posted in the below topic.
3) The drop down menue started to ignore the color-changes and whent fron green background to purple on hoovering
You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.
Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS
#page .dropdown-menu> li> a:hover {
background-color: #24891b;
color: #fff;
}
Hi thanks but it seems like none of those sollutions works for me,
For example the if( $show_logo && $logo ) {
echo wp_get_attachment_image($logo, array(9999, 9999));
}
is for me
<div class="container">
<div id="logo">
<span class="site-name"><a>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php
if( $show_logo && $logo ) {
echo wp_get_attachment_image($logo, 'full');
}
elseif( $show_title ) {
bloginfo( 'name' );
}
else{
bloginfo( 'name' );
} ?>
</a>
</span><!-- end of .site-name -->
What part should I change instead?
laranz
March 17, 2017, 8:12pm
8
Hi,
Try changing this,
if( $show_logo && $logo ) {
echo wp_get_attachment_image($logo, 'full');
}
to
if( $show_logo && $logo ) {
the_custom_logo();
}
If that didn’t work, add this in the functions.php
function logo_custom_setup(){
add_theme_support( 'custom-logo' );
}
add_action( 'after_setup_theme', 'logo_custom_setup' );
Let us know,
Thanks,
laranz.
Hi
I tried both metods and it was still the same,
The issues that remains are that there is still no logo over the slider and the read more text is still in the wrong langue for the swedish version.
movin
March 21, 2017, 9:03am
10
Would you mind if i log in to your site and do some troubleshooting? If this is ok then could you please share me your site log in details privately by checking the option “Set as private reply” when replying to this topic?
Hi
I´ll make a user for you, what email should I post in the registrationfield?
movin
March 22, 2017, 10:23am
12
Thanks, I´ll add you right away
movin
March 24, 2017, 12:37pm
15
No need to bump could you please share me your site log in details privately as requested previously?
Hi
Sorry if I bumped when I shouldnt have
Didn´t you get the login details when you got the registry email?
your details are
User: supportcolorlib
pw: fV9gfqJ&9!Dhxg^aw&jO^E(C
movin
March 24, 2017, 1:12pm
17
No i didn’t get any email and also the log in details you have shared is not working for me so please check it.
Hi
The username remain as: supportcolorlib
I changed the pw to: r$pU6rajUC5
Hope this works
regards
laranz
March 25, 2017, 12:19pm
19
Hi,
It seems the changes you made via Child theme cause the issue, I switch back to the parent theme and all looks nice. Instead of using a plugin to create a child theme use this doc Child Themes « WordPress Codex it is straight forward.
Let us know,
Thanks,
laranz.
Hi again
Thanks for the help, I´ll use that from now on with my child themes
best regards