Guido Handrick
Forum Replies Created
-
Forum: Plugins
In reply to: [Popups for Divi] evr_divi_popup-js_data filter dosn’t workHallo, i found the error. In popups-for-divi/include/class-popups-for-divi.php line 365:
// Compatibility with older Popups for Divi version.
$js_data = apply_filters( ‘evr_divi_popup-js_data’, $config ); // phpcs:ignore// Divi Areas Pro filter.
$js_data = apply_filters( ‘divi_areas_js_data’, $config );If I change the config parameters by using the evr_divi_popup-js_data filter hook $js_data is correct. But in line 369 $js_data will be overwritten by the divi_areas_js_data filter using the default $config settings.
My quickfix was to comment out line 369 $js_data = apply_filters( ‘divi_areas_js_data’, $config );
Another fix would be to use divi_areas_js_data filter.
Forum: Plugins
In reply to: [WP Popular Posts] Views and comments count not shown in WP-admin Stats-TabHi Hector, thank you for your quick response. You are right, my theme has a hook for
wpp_postsfunction.function regioblog_wpp_post($content, $p, $instance) { if(!is_admin()) { // WPML support, based on Serhat Evren's suggestion - see http://ww.wp.xz.cn/support/topic/wpml-trick#post-5452607 if ( defined( 'ICL_LANGUAGE_CODE' ) && function_exists( 'icl_object_id' ) ) { $current_id = icl_object_id( $p->id, get_post_type( $p->id ), true, ICL_LANGUAGE_CODE ); $permalink = get_permalink( $current_id ); } // Get original permalink else { $permalink = get_permalink( $p->id ); } $title = get_the_title( $p->id ); $excerpt = get_the_excerpt( $p->id ); $subtitle = get_post_meta( $p->id, 'subtitle' ); $content = '<li>' . '<a href="' . $permalink . '" title="' . esc_attr( $title ) . '" class="wpp-post-title">' . $title . '</a> ' . '<p class="wpp-excerpt">' . $subtitle[0] . '</p>' . "</li>\n"; } return $content; } add_filter('wpp_post', 'regioblog_wpp_post', 3, 3);I added the
if(!is_admin())as a quick fix and it’s working.Thanx a lot fpr your help!
Forum: Plugins
In reply to: [Theme My Login] Password Reset ProblemHi Jeff, today i found the reason for the reset password link error. I use the SB Welcome Mail Plugin and TML. If i disable the SBWM Plugin everything works fine. So i looked at the link URL in the mails:
Without SBWM: /resetpass/?key=OtiLajrPFxFTjHB2Q6vu&login=ghandrick-1
With SBWM: /login/?action=rp&key=dNtnae2TJ3KeVHjqyLgh&login=ghandrick-1The second link dosn’t work with your TML plugin.
So as a quick fix i did a small change in the SBWM Plugin:
$reset_url = network_site_url("resetpass/?key=$key&login=" . rawurlencode($user_login), 'login'); //$reset_url = wp_login_url() . '?action=rp&key=' . $key . '&login=' . rawurlencode($user_login);Regards
GuidoForum: Plugins
In reply to: [Theme My Login] Password Reset ProblemI’m using TML 6.4.3 and WP 4.4 and got the same error as Uendi.
On the lostpassword page i get this error message “Your password reset link appears to be invalid. Please request a new link below.” I’ve reinstalled the plugin, so every file is new and up to date. This is my reset password link: /login/?action=rp&key=stBfvCZ89L6CvAGQq7Xh&login=ghandrick-1 if i change it to /wp-login.php?action=rp&key=stBfvCZ89L6CvAGQq7Xh&login=ghandrick-1 everything works fine. I don’t use a cache plugin or something else.Hello, i got the same error. The new API key ends with -us10. I tried it with an old key, ending with -us5, and this works.
Thank You
Forum: Plugins
In reply to: [OSM Categories] OSM Categories and custom taxonomy/post typeHey NR., in the current version of osm-categories it’s not possible to set a custom post type or taxonomy. The plugin works only with categories. But i think it’s not a big thing. I will do it on the next version – coming soon.
Regards Guido
I found and resolved the problem. On my local machine i use db user root without password. So the pasword lenght = 0 and this produced error -7000. But i never got any error messages, just the blank screen because nothing happens.
Thanx a lot for this great plugin -now i can work with it!I use one mysql root user for both cms. I’ve tried also filling out both connections – joomla and wp. But it’s the same. Maybe it depends on the WordPress Version?