zxkirazx
Forum Replies Created
-
What if i delete jquery.amaran.js?
Is there any functions i could delete from the original source code to prevent the notification from popping up?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] BuddyPress Integration Fatal errorIt works. Thank you very much Greg
Its working. Thank you very much!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Mobile ViewCould you give me an example code like if i dont want the search bar to appear in mobile, how would it be?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyIt works. Thank you so much Greg!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctly$favorites = get_user_favorites(); //array of advert/post ID
function favposts( $query ) {
global $wp_query;
$query = new WP_Query( array( ‘post_type’ => ‘advert’, ‘post__in’ => $favorites ) );
return $query;
}
remove_filter(“the_content”, “adverts_the_content”);
add_filter( “adverts_list_query”, “favposts” );
echo shortcode_adverts_list(array());The above is my code. But it dont seems to return any results.
The result i got was There are no ads matching your search criteria.Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyI have another plugin with a function call that returns an array of post/advert ID. I am wondering if i can pass the result to advert_list_query so i can display the results in the same format as advert_list
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyThank you very much Greg! Last question, can i query the adverts using post/advert ID?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyHi. I had a taxinomy-*.php created and named it taxonomy-advert_brand.php.
Content of taxonomy-advert_brand.php: https://pastebin.com/7h7FrAP6
Content of original archive.php: https://pastebin.com/bMKx59trForum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyThe theme I am using is Vantage by Siteorigins
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Custom taxonomy not displaying correctlyHi. I followed all the steps given, but it still does not seems to work. It returns me all the adverts instead of just the slugs which was selected
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Adding icon in custom formsIt is just an example. I wanted to add a link in the post ad form. Is that possible?
- This reply was modified 7 years, 10 months ago by zxkirazx.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Adding icon in custom formsHi. I dont mean a taxonomy. I meant an a tag. Something like this. example
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Adding icon in custom forms