tazir
Forum Replies Created
-
After updating to Lovecraft 2.1.1 the problem still persist.
Checking page source – I see the file “style.css” of the child theme is not loaded.
Do I need to add him through functions.php ?yes, this is the basic code for its:
$opts = array('expireType'=>"private", 'id'=>$post_id); $ts = get_gmt_from_date("$year-$month-$day $hour:$minute:0",'U'); _scheduleExpiratorEvent($post_id,$ts,$opts);
Version 2.1.4.2
Woocommerce 3.4.3Forum: Plugins
In reply to: [WooCommerce added to cart popup (Ajax)] Replacing popup templateWhat is the answer?
Forum: Plugins
In reply to: [Newsletter - Send awesome emails from WordPress] UnsubscribeHi Stefano,
Thanks for your plugin.
I Didn’t get your answer.
Could you explain again how to make the un-subscription link work?Forum: Plugins
In reply to: [Seriously Simple Podcasting] The media player does not display with my themeHow did you able to fix it?
Thanks, working for me too
Forum: Plugins
In reply to: [Watu Quiz] Hook – watu_exam_submittedthanks
Forum: Plugins
In reply to: [Watu Quiz] Hook – watu_exam_submittedStill I cannot get the quiz ID.
How could I use the quiz ID with the hook ?Forum: Plugins
In reply to: [Watu Quiz] Hook – watu_exam_submittedI found a solution.
using watu_redirect() – the WATU fn used “<meta http-equiv=’refresh’ …”Forum: Plugins
In reply to: [Watu Quiz] Hook – watu_exam_submittedDisabled Ajax, but still not working
Forum: Plugins
In reply to: [Testimonials Widget] Category pageResetting permalinks settings just fix the problem.
thanksForum: Plugins
In reply to: [Wp-Pro-Quiz] Allowing logged user see his/her statisticsYou can create page for it.
the basic code:global $wpdb; $my_db_pr = $wpdb->base_prefix; $tst_usr = get_current_user_id(); $sql="SELECT qstat.points, qstat.question_id, qstat.answer_data FROM ". $my_db_pr ."wp_pro_quiz_statistic AS qstat JOIN ". $my_db_pr ."wp_pro_quiz_statistic_ref AS qref ON qstat.statistic_ref_id = qref.statistic_ref_id WHERE qref.user_id=".$tst_usr; $posts = $wpdb->get_results($sql);
Forum: Plugins
In reply to: [Wp-Pro-Quiz] When Wp-Pro-Quiz done then email Auto subscribe mailchimp.You can use hook: wp_pro_quiz_completed_quiz
e.g.: add_action( ‘wp_pro_quiz_completed_quiz’, ‘your_function’);