Konstantinos Kouratoras
Forum Replies Created
-
Forum: Plugins
In reply to: [Smooth Scroll Up] Using image inconsistent display for mobileGlad to hear that. ??
A review would be appreciated, thanks!
Forum: Plugins
In reply to: [Smooth Scroll Up] Using image inconsistent display for mobileHi,
What issue are you facing? I just checked in both Chrome and Safari in iPhone with iOS 12 and works fine.
Forum: Plugins
In reply to: [Smooth Scroll Up] How to change the icon colourGlad it worked! A review would be appreciated, thanks!
Forum: Plugins
In reply to: [Smooth Scroll Up] How to change the icon colourHello,
You can use the following code, adjusting the desired color:
#scrollUp .fa{ color: #AFCA4D !important; }
Forum: Plugins
In reply to: [Smooth Scroll Up] change icon colorHi, sorry for the late reply.
The CSS code is correct, probably some other code is overriding that. Try to use
important
keyword, like:#scrollUp .fa{ color: #AFCA4D !important; }
- This reply was modified 6 years, 5 months ago by Konstantinos Kouratoras.
Hi @corylamleorg!
Develop version seems to fix the issue. Thanks!
Forum: Developing with WordPress
In reply to: Modify Custom taxonomy page titleHi jayanta,
You can use the
get_the_archive_title
filter to modify the taxonomy archive title.Something like that should work:
add_filter( 'get_the_archive_title', 'custom_taxonomy_archive_title', 10, 2 ); function custom_taxonomy_archive_title( $title ) { if( is_tax( 'question-tag' ) ) { $title = __( 'Custom title' ); } return $title; }
Regards,
Konstantinos- This reply was modified 7 years, 10 months ago by Konstantinos Kouratoras.
Forum: Fixing WordPress
In reply to: Change text of user registration pageHi Richard,
Try using
wp_login_errors
filter.Something like this should work:
add_filter( 'wp_login_errors', 'override_registration_disabled_message', 10, 2 ); function override_registration_disabled_message( $errors, $redirect_to ) { if( isset( $errors->errors['registerdisabled'] ) ) { foreach( $errors->errors['registerdisabled'] as $index => $msg ) { $errors->errors['registerdisabled'][$index] = __( 'Your custom message' ); } } return $errors; }
Regards,
KonstantinosForum: Plugins
In reply to: [Smooth Scroll Up] W3cI have just releases version 1.2 of the plugin and this should be OK now. Thank you.
Forum: Plugins
In reply to: [Smooth Scroll Up] Display/hide not workingI have just releases version 1.2 of the plugin. Can you check again and let me know if it’s fixed now?
Forum: Plugins
In reply to: [Smooth Scroll Up] Scroll option shows only in Home pageIt should load jQuery library by default.
Can you disable all other plugins (except for Smooth Scroll Up) and check if it works?
Forum: Plugins
In reply to: [Smooth Scroll Up] Doesn't work if Autoptimize is activeHi! I tried with several settings of Autoptimize plugin and it works fine in all cases. Are you getting any errors in your browser’s console?
Forum: Plugins
In reply to: [Smooth Scroll Up] Display/hide not workingHi! This will be fixed in the upcoming update.
Forum: Plugins
In reply to: [Smooth Scroll Up] Scroll option shows only in Home pageAre you getting any errors in your browser’s console?
Forum: Plugins
In reply to: [Smooth Scroll Up] Smooth Scroll Up Widget doesn't show up on other languagesHi! I tried all URLs and the plugin seems to work in all pages.
Do you still have the issue?