Michael
Forum Replies Created
-
Forum: Plugins
In reply to: [Security Ninja - Secure Firewall & Secure Malware Scanner] 2FA not workingSame here… I’ve also created several tickets but still no answers for weeks now! What is going on at Security Ninja?
Forum: Plugins
In reply to: [Translate Multilingual sites - TranslatePress] disable translate email infoSame here… This is a huge bug in TranslatePress since months now. Waiting for a solution…
Forum: Plugins
In reply to: [Temporary Login Without Password] Redirect to a private page?I mean, I‘m not able to select a private page for redirect after login…
Forum: Plugins
In reply to: [Easy Table of Contents] Headings with hyphens don’t workOn my end it is not working with hyphen ??
The console says: ezTOC scrollTarget Not Found: [id=”kurzeinsaetze_-_auf_und_davon”]
The h2 title is “Kurzeins?tze – Auf und davon”
Best,
MichaelForum: Plugins
In reply to: [VS Event List] Time does not working anymore?Hi Guido
No, I’ve just checked the database and the meta key “event-time” is not set for newer events. On the old events it is set, but on the newer it is empty.
Best,
MichaelForum: Plugins
In reply to: [wp-mpdf] Not working with TranslatePress?Hi,
thanks for your fast answer! Yes, debug mode is on and there are no PHP errors within the log. Is it working for you with TranslatePress?Thank you for any help! ??
Forum: Plugins
In reply to: [VS Event List] Base URL with frontHi Guido,
Thanks for the update. I’ve noticed, that you missed the “with_front” argument. Could you please add it in the future updates?
Here my code
$vsel_args = array( 'labels' => $vsel_labels, 'menu_icon' => 'dashicons-calendar-alt', 'public' => $public_event, 'can_export' => true, 'show_in_nav_menus' => $show_in_menu, 'has_archive' => $has_archive, 'show_ui' => true, 'show_in_rest' => true, 'capability_type' => 'post', 'taxonomies' => array( 'event_cat' ), 'rewrite' => array( 'slug' => esc_attr($event_slug), 'with_front' => false ), 'supports' => array( 'title', 'thumbnail', 'page-attributes', 'custom-fields', 'editor' ) );
Best,
MichaelForum: Plugins
In reply to: [Related Posts for WordPress] Manually add post and some random oneHi Harish
Thank you for the answer. We set the posts to 4 in the settings and we only need the manually added posts.
Best,
MichaelForum: Plugins
In reply to: [Genesis Testimonial Slider] Polylang support?Hi Mairag
It seems to work with Version 1.2.5. With this version I’m able to make the custom post type “Testimonials” translatable.
Best,
MichaelForum: Plugins
In reply to: [Simple Download Monitor] Custom Template?Thanks for your fast reply.
I like to have it update compatible. So I think I need to hook in the output. I’ve tried it with this code, but unfortunately it doesn’t work. What I’m doing wrong?
/* Downloads */ function custom_download_output($output, $atts){ $output = 'Test'; return $output; } add_filter('sdm_download_shortcode_output', 'custom_download_output', 10, 2);
Hi,
The shortcode within the [events_list] generates a grid. I use the shortcodes ultimate plugin: https://getshortcodes.com/
Thank you very much!
I’ve changed to code to this and it works:
add_filter('em_location_output_placeholder','my_em_placeholder_mod',1,3); function my_em_placeholder_mod($replace, $EM_Location, $result){ switch( $result ){ case '#_LOCATIONNEXTEVENTS': $events = EM_Events::get( array('town'=>$EM_Location->location_town, 'scope'=>'future', 'limit'=>99) ); if ( count($events) > 0 ){ $replace = get_option('dbem_location_event_list_item_header_format'); foreach($events as $event){ $replace .= $event->output(get_option('dbem_location_event_list_item_format')); } $replace .= get_option('dbem_location_event_list_item_footer_format'); } else { $replace = get_option('dbem_location_no_events_message'); } break; } return $replace; }
Forum: Plugins
In reply to: [Cache Enabler] Enabling cache-enabler causes mixed content over httpsIn my .htaccess is:
# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /index.php [L] </IfModule> # END WordPress Header add Access-Control-Allow-Origin "*" RewriteEngine On RewriteCond %{HTTPS} off RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]
Forum: Plugins
In reply to: [Cache Enabler] Enabling cache-enabler causes mixed content over httpsHere are my settings:
https://d.pr/i/VYJV7lForum: Plugins
In reply to: [Cache Enabler] Enabling cache-enabler causes mixed content over httpsI’ve got the same errors on my sites. Any news on this topic? I don’t use Really Simple SSL but Autoptimize for generating the compact css-files.