bruinkid
Forum Replies Created
-
When I put below code, then ‘tags’ disappear and only ‘categories’ show. How to let both ‘category’ and ‘tag’ show?
// add subscribe2 taxonomies
function post_tags($taxonomies) {
$taxonomies = array(‘post_tag’);
return $taxonomies;
}
add_filter(‘s2_taxonomies’, ‘post_tags’);function categories($taxonomies) {
$taxonomies = array(‘category’);
return $taxonomies;
}
add_filter(‘s2_taxonomies’, ‘categories’);I tried what you said, but then my ‘categories’ disappear and only ‘tags’ show. What codes can I put so that my ‘categories’ and ‘tags’ both show?
I tried below. Nothing shows.
// add subscribe2 taxonomies
function post_tags($taxonomies) {
$taxonomies[] = ‘post_tag’;
return $taxonomies;
}
add_filter(‘s2_taxonomies’, ‘post_tags’);Please definitely put this in priority. I will deliver a speech in WordCamp and demonstrate how I use this feature in a real website that makes money.
Forum: Plugins
In reply to: [MailPoet Newsletters (Previous)] URL for Edit your subscription pageHi,
Is there a way for the user to edit their subscription preferences on my website and not in the newsletter? Can this be achieved by some custom coding?
I want to let user select different categories.
Currently, I am able to see that page by clicking ‘view’, in ‘Advanced’ tab ‘subscriber user profile page.
Hello Jamie,
You were very helpful before. But I just paid you $200 in April this year. Now I was asked to pay $200 again in Oct. I am very unhappy about this.
Your support Stephen sent me very strange answers regarding my payment and support period. I just paid you $200 in April 2016 and your support told me I am not entitled to any support unless I paid again. I already paid you three times in each of 2014, 2015, and 2016.
I asked questions here for everyone in WordPress community to answer.
I think this is not working. I need to map [user_id] to something in Filter Entries. It was showing because I use current user. But that’s not right. I think I should use something else in Filter Entries. Did anyone knows what that is?
I found solution. So I am closing this ticket. Tks.
p.s. For everyone’s info here: what I do is create a view and in view I use [x show=x]. Then I insert that view to the author page.
hi,
I know that as long as one is sending emails with PHP script without using a cron job, there is always a limit, regardless of the server speed and max_execution_time configuration. So, that will be the same limit for Subscribe2, right?
P.s. I just tried to set number of recipients to 1 and it seems to work: I see the post show in my 2 testing email addresses. But what is the reason behind it? From the wording, it looks like only 1 registered member will receive the post.
If I set number of recipients to 1, does that mean only one person will receive that post? …
Forum: Plugins
In reply to: [WP Store Locator] Support for post typeI can see what you are saying. This might work if post type is ‘restaurant’. But this can’t work if our post type is ‘house’ and we have other search criteria filter after this search as first step search in homepage. Basically the SQL query use coordinates like wpsl_zip and wpsl_address . How can we change that to our own coordinate name like house_zip and house_address?
Forum: Plugins
In reply to: [WP Store Locator] Email notification based on dealer zip codeI am also interested in knowing this solution. I will be using Formidable form to create a contact form. I want to send the message submitted via contact form to the dealers within 100 miles of that zip code. I am ok with php. Can you point me the direction?
Forum: Plugins
In reply to: [WP Store Locator] Do I have to input address from your admin area?Thank you very much for your answer. I do have all other coordinates. (address 1, address 2, city, state, country, postal code).
If I change the name of the post type, do I have to hack into your code, or I just write some codes in functions.php and other files?