Thanks!
–jeremy
https://www.ads-software.com/plugins/wysija-newsletters/
]]>https://www.ads-software.com/plugins/ultimate-social-media-icons/
]]>Hope this can be resolved soon as I now have to decide over marketing vs header display.
https://www.ads-software.com/plugins/genesis-custom-headers/
]]>However, I use Premise for WordPress made by Copyblogger for my landing pages. i.e. sales page, opt-in landing page, etc.
Scroll triggered boxes show up on those pages. But I don’t want them too.
These pages have no page ID. I’m thinking it’s because the pages are stored in the Premise folder. Therefore I can’t use the “show” only on such and such page feature of your app.
The website is Cholesterol-coverup.com
Thank you.
https://www.ads-software.com/plugins/scroll-triggered-boxes/
]]>It would also be useful to know if it just is not a viable goal. Thank you!
https://www.ads-software.com/plugins/genesis-enews-extended/
]]>OK! So here is what I am trying to do! I have purchased a membership plugin called premise. I am looking to add this type of functionality. When a member registers for my site, I want them to input their zip code along with other standard info. I want the plugin to create groups of 15 members per group. They should be placed into groups by their zip code. Meaning, the first 15 members that register for the site with the same zip code or a similar zip code (within a 30 mile radius), will be grouped together. All groups will be groups of 15. After a group has 15 members with the same zip code or a similar zip code, the plugin will create a new group.
Is this possible?
Ideally, I’d like to stick with the Premise Membership plugin, but is there any other membership plugin with this functionality?
Are there any plugins that I can add that will give me this functionality?
All help and advice is appreciated! Thanks!
]]>I’m trying to use the relevanssi_hits_filter to exclude posts with certain tags from displaying. I’m also using Premise to manage access to certain posts.
I’m having trouble with the code below, which fails at the foreach (get_the_tags($hit->ID) as $tag)
part. I’m not very experienced with PHP code, and think my syntax is incorrect.
The code fails with an Invalid Argument Supplied error. A var_dump of get_the_tags($hit->ID) gives me an array of three objects, and inside each object there is definitely a term_id. I’ve also tried foreach (get_the_tags($hit[0]->ID) as $tag) but that failed as well.
Code is posted at https://pastebin.com/aXpkzqxn and is also displayed below.
add_filter('relevanssi_hits_filter', 'Search_Filter_Premium_Content');
function Search_Filter_Premium_Content($hits) {
//$hits is an array made up of:
//$hits[0] is an array containing the list of hits
//in the form of an array of post objects
//$hits[1] is the search query as a string.
//$LoggedIn checks if the user is logged in
$LoggedIn = is_user_in_program();
if( $LoggedIn == true) {
return $hits;
}
else {
// User is not a logged in user
// Create 2 empty arrays.
// We will put premium content into one,
// normal content into the other,
// and return just the normal content to the user's search query.
$Normal_Content = array();
$Premium_Content = array();
foreach ($hits[0] as $hit) {
$premium = false;
//Check if the user has access to view the post. If not, exclude the post.
$has_access = premise_is_protected_content( $hit->ID);
if ( $has_access == true) {
$premium = true;
$premium ? array_push($Premium_Content, $hit) : (array_push($Normal_Content, $hit));
continue;
}
foreach (get_the_tags($hit->ID) as $tag) {
//Exclude hits with tag term 119 = "program" - exclude these posts from search results by putting them into $Premium_Content.
if ($tag->term_id == 119) {
$premium = true;
break;
}
}
$premium ? array_push($Premium_Content, $hit) : (array_push($Normal_Content, $hit));
}
$hits[0] = $Normal_Content;
return $hits;
}
}
https://www.ads-software.com/plugins/relevanssi/
]]>I’m just wondering if anyone can help me.
I’m doing a premise landing page for my client and they want the header (and any dark bars) to stretch across the width of the screen. I want the content to remain in the middle though.
Can I do it with css?
I’ve been trying to work it out using firebug. I’ve managed it with the footer, but I can’t work out how to do the header.
The site is www.optimaumbrella.com
Please help!
Thanks a lot
Tom
]]>Is there something you can do for fixing this?
https://www.ads-software.com/plugins/genesis-widget-toggle/
]]>[show_to accesslevel='platinum']
[raw]
<div id="liquidTopMargin"></div> <!-- Provide a liquid upper margin for the SVG viewport. -->
<svg id="svgElement" width="100%" height="98%" ....
...
</svg>
[/raw]
[/showto]
The svg displays properly, but [/showto] is displayed at the bottom of the page and the access control that should be provided by the Premise [showto] tag is ignored.
Any ideas?
Thanks
https://www.ads-software.com/extend/plugins/nested-shortcodes/
]]>