pryde1919
Forum Replies Created
-
and when a user is login , it was redirected to the membership levels page, how can i change to the default website rather than membership level page? thankyou
thankyou andrew ??
and how do you disable the cancel button in membership account page?
and do you have an actual video or paid membership pro, from user choosing levels, pays in paypal, and expires? a walkthrough how the systems workflows, not the tutorial or setup, frontend user workflow from start to end. any video? or screenshots.
hi andrew, thankyou for your kind reply.
i have some few questions
1- is there a shortcode to display the user’s level he purchase? i wanted to show what kind of level he purchase on a custom page, just need the php code
or i have to do it manually, if the user is silver member echo you are silver membership.2- about the ssl certificate, i wanted to try my website if this will work to earn money, if i cant earn money, then purchasing ssl certificate will be a waste. can i use this plugin without ssl certificate first? i wanted to test it out for a month, if my site works and good to earn extra money, that is the time i will purchase ssl certificate.
Forum: Plugins
In reply to: [Search & Filter] show all post including close post etcthe taxonomy is only showing categories that are published, how can i include all the post_status that are publish,close and all.
because it looks empty if the publish date has expired. and being empty is not good look for the site.Forum: Plugins
In reply to: [Search & Filter] change post_types= to post_type=or maybe url rewrite is a good idea, but don’t know what to put to the function code that fits your plugin
Forum: Plugins
In reply to: [Multi Rating] How to show the rated post in new WP_QueryHi, I’m considering to purchase the pro version. and if I purchase the pro version, is there a metakey or anything that can rank from highest to lowest?
will you help me on this after i purchase the pro version?
Forum: Plugins
In reply to: [WpChats Lite] chatboxHi, is it possible without the windows tool? like without the maximize, close x , without the address bar?
Forum: Plugins
In reply to: [WpChats Lite] chatboxok let me try ??
Forum: Plugins
In reply to: [Frontend Uploader] destination of imagei forgot to mention, the image attach is for resume.
Forum: Plugins
In reply to: [Dominant Color] Showing the resultsHi me too. I also wanted to know this.
Is it possible to have it in shortcode?
Forum: Plugins
In reply to: [WooCommerce] exclude the specific product categoryfor those who also looking for this code, to search only specific category, just change the word “music” with your categoryname slug
function SearchFilter($query) {
if ($query->is_search) {
$query->set(‘product_cat’,’music’);
}
return $query;
}
add_filter(‘pre_get_posts’,’SearchFilter’);Forum: Plugins
In reply to: [WooCommerce] product title and price beside with each otherI’m using localhost, I haven’t upload it yet. and I’m using kleo theme child theme, can someone help me?
Forum: Fixing WordPress
In reply to: exclude product category in search boxfunction SearchFilter($query) {
if ($query->is_search) {
$query->set(‘post_type’, ‘post’);
}
return $query;
}
add_filter(‘pre_get_posts’,’SearchFilter’);I’m using this code founded on web, but it exclude all the pages and post.
What i wanted is to only exclude one page.