charafweb
Forum Replies Created
-
But now I don’t have any issue after I switched Menu Overlay Position to Left. Thank you
Hi @ahmedkaludi
Sorry, I deactivated the plugin on my live website, so I can’t give you an URL. I’m testing right now on localhost only.
But, I succeeded to find where the issue comes from : If you go to : Design > header > Advanced Header Options and you change Menu Overlay Position to Right, you will get that error !
Thank you
I tested all versions from 1.0.58 and down, all have the same issue until version 1.0.53.1 that has another bug : The tag ‘link rel=canonical’ appears more than once in the document. !!
- This reply was modified 5 years, 11 months ago by charafweb.
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Critical errorSame issue after updating from 3.2.6.1 to 3.3.4.1 ! Going back to 3.2.6.1 🙁
- This reply was modified 5 years, 11 months ago by charafweb.
Forum: Themes and Templates
In reply to: [Astra] No meta on custom post typesThank you very much, I appreciate your help.
Forum: Plugins
In reply to: [Passster - Password Protect Pages and Content] Critical errorThank you for the link.
The plugin was working just great before the upgrade.
I have a list of 600 passwords.
PHP version 7.3
max_execution_time = 30
max_input_time = 60
memory_limit = 128MForum: Plugins
In reply to: [Ultimate FAQ Accordion Plugin] [Request] No CPT pleaseFor now I’m using this code in functions.php to disable the CPT:
function alter_ultimate_faq_cpt( $args, $post_type ) { // If not Products CPT, bail. if ( 'ufaq' == $post_type ) { $ultimate_faqs = array( 'exclude_from_search' => true, 'publicly_queryable' => false, 'query_var' => false, 'has_archive' => false, 'rewrite' => false, 'show_in_rest' => false ); return array_merge( $args, $ultimate_faqs ); } else { return $args; } } add_filter( 'register_post_type_args', 'alter_ultimate_faq_cpt', 10, 2 );Hello @shamser_suzon,
Thank you very much. I appreciate your response. Looking forward for the next updates.Hello @shamser_suzon
When implementing this feature, please add an option to show random “fake dates & times” such as “7 hours ago”.
Thank you very much
Forum: Plugins
In reply to: [Strong Testimonials] Is it possible to disable the “testimonial” cptHere is what I found : the plugin create the new cpt with default values. To override those, and hence remove single pages created for every testimonial/review we should alter the $arg like this :
function alter_strong_testimonial_cpt( $args, $post_type ) { // If not Products CPT, bail. if ( 'wpm-testimonial' == $post_type ) { $testimonial_args = array( 'publicly_queryable' => false, 'query_var' => false, 'public' => false, 'exclude_from_search' => true, 'has_archive' => false, 'rewrite' => false ); return array_merge( $args, $testimonial_args ); } else { return $args; } } add_filter( 'register_post_type_args', 'alter_strong_testimonial_cpt', 10, 2 );Thank you very much for you magnificent plugin.
Forum: Plugins
In reply to: [Tawk.To Live Chat] How to disable chat for Admin role?I was going to ask for this feature. Let’s hope they will do it soon.
Forum: Plugins
In reply to: [Zoho Mail for WordPress] Reply-To optionThank you for your reply. Yeah that is doing the trick. I found myself by doing a lot of tries.
Thank you very much for your service and supportForum: Plugins
In reply to: [Zoho Mail for WordPress] Reply-To optionOk, I see. Can we exclude all people so that we have only tweets from websites. Thank you for your support.
- This reply was modified 6 years, 9 months ago by charafweb.
Forum: Plugins
In reply to: [Automatic YouTube Gallery] 2 RequestsThank you for your reply and suggestions. Good luck