akteotia
Forum Replies Created
-
Just Disable the
Honeypot at Forminator > Form > Behaviour > Security?
then it’s Working
Boom Thankshttps://www.photoshopvideotutorial.com/guest-post/
Same Issue Please Help
I install WPform SMTP its Sending email normally Please help me
Forum: Fixing WordPress
In reply to: How to create 5 sec wait Redirect in WordPress? – Need Help!!!Nice it Work…
Really thanks broForum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmits automatically start working… I do not do anything after 3 days….now the plugin is also working fine…
Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmok …thanks….
Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmnext scheduled time is not updating
Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmLook at below
2019-06-10 16:03:53 – DEBUG: aps_auto_post_hook triggered, looking for eligible posts…
2019-06-10 16:03:53 – DEBUG: eligible posts WP_Query Array ( [posts_per_page] => -1 [cat] => [author] => [post_type] => Array ( [0] => post ) [ignore_sticky_posts] => 1 [post_status] => Array ( [0] => publish ) [order] => ASC [orderby] => rand )
2019-06-10 16:03:58 – DEBUG: found 4229 results.
2019-06-10 16:03:58 – DEBUG: processing post Free Premium Street Side Circle Banner PSD Mockup
2019-06-10 16:03:58 – DEBUG: wp_update_post Array ( [ID] => 31761 [post_status] => publish [post_date_gmt] => 2019-06-10 10:33:58 [post_date] => 2019-06-10 16:03:58 )
2019-06-10 16:03:59 – POST id 31761 RECYCLED: ‘Free Premium Street Side Circle Banner PSD Mockup’
2019-06-10 16:03:59 – DEBUG: wp_next_scheduled for 2019-06-10 15:52:58 .
2019-06-10 16:06:39 – DEBUG: aps_auto_post_hook triggered, looking for eligible posts…
2019-06-10 16:06:39 – DEBUG: eligible posts WP_Query Array ( [posts_per_page] => -1 [cat] => [author] => [post_type] => Array ( [0] => post ) [ignore_sticky_posts] => 1 [post_status] => Array ( [0] => publish ) [order] => ASC [orderby] => rand )
2019-06-10 16:06:45 – DEBUG: found 4229 results.
2019-06-10 16:06:45 – DEBUG: processing post New Small Ice Cream A4 Menu PSD Template
2019-06-10 16:06:45 – DEBUG: wp_update_post Array ( [ID] => 60147 [post_status] => publish [post_date_gmt] => 2019-06-10 10:36:45 [post_date] => 2019-06-10 16:06:45 )
2019-06-10 16:06:48 – POST id 60147 RECYCLED: ‘New Small Ice Cream A4 Menu PSD Template’
2019-06-10 16:06:48 – DEBUG: wp_next_scheduled for 2019-06-10 15:52:58 .Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmAuto Post Scheduler Log Messages
Screen Shot
https://www.dropbox.com/s/59li3hk8g5yxc1m/Screenshot%202019-06-10%2013.58.45.png?dl=0
Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmCurrent Status: Enabled
Current server time:2019-06-10 13:46:56 Asia/Kolkata
Next auto post check:2019-06-10 13:40:48 Asia/KolkataLook at the time on Next auto post time….
Forum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmForum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmForum: Plugins
In reply to: [Auto Post Scheduler] No Publish Post is Auto Posting From Today 1 pmIt’s running I check it……
Next auto post check:2019-06-09 21:28:01 Asia/Kolkata. Is not increase account to 449 sec set in setings
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Search By CategoryThis code is not able to give me search by category
<?php
/*
Plugin Name: E4S
Plugin URI: https://www.equity4sweat.com
Description: Plugin for editing content of WPAdverts plugin
Author: G Fenney
Version: 1.0
Author URI: https://www.equity4sweat.com
*/add_filter( ‘adverts_form_load’, ‘search_by_category_form_load’ );
/**
* Adds category dropdown into search form in [adverts_list].
*
* @param array $form Search form scheme
* @return array Customized search form scheme
*/function search_by_category_form_load( $form ) {
if( $form[‘name’] != ‘search’ ) {
return $form;
}
$form[‘field’][] = array(
“name” => “advert_category”,
“type” => “adverts_field_select”,
“order” => 20,
“label” => __(“Category”, “adverts”),
“max_choices” => 10,
“options” => array(),
“options_callback” => “adverts_taxonomies”,
“meta” => array(
“search_group” => “visible”,
“search_type” => “full”
)
);
return $form;
}add_filter( ‘adverts_list_query’, ‘search_by_category_query’ );
/**
* Adds tax_query param to WP_Query
*
* The tax_query is added only if it is in $_GET[‘advert_category’]
*
* @param array $args WP_Query args
* @return array Modified WP_Query args
*/
function search_by_category_query( $args ) {if( ! adverts_request( “advert_category” ) ) {
return $args;
}$args[“tax_query”] = array(
array(
‘taxonomy’ => ‘advert_category’,
‘field’ => ‘term_id’,
‘terms’ => adverts_request( “advert_category” ),
),
);return $args;
}Please help…..send to unknown url …like that
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Single Category SelectYes i Know it…..But i want it in 2 Level….1st select Main Category Then Sub-Category.
Multilevel Dependent Dropdown Like that…..please help.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Single Category SelectHello
Is Possible Make Category Selection in Multilevel Seletction
1st Dropdown of Category
2nd Dropdown of Sub Category.
Many thanks.Arun Kumar