InterlockSolutions
Forum Replies Created
-
Forum: Plugins
In reply to: [Relevanssi - A Better Search] No Search Results – Query OffThanks for pointing me in the right direction, Mikko. I had to make two minor tweaks to the code you sent to get it to work for me, but now the search is fully functional. I used the filter “relevanssi_modify_wp_query” and changed “any” to “page,post”. That did the trick. Here’s the final code:
add_filter( 'relevanssi_modify_wp_query', function( $query ) {
$query->set( 'post_types', 'page,post' );
return $query;
} );Thank you!
Never mind! I just figured out that I can simply add the [Sassy_Social_Share] shortcode to the bottom of the page, and the icons show up like I want. Sorry, I should have realized that before pinging you.
Thanks for the reply. I have created a custom field for the pages where I want this to show with the name of “social_share_icons” and the value set to “true”. Can you check that in a hook and then display the icons if it exists and is set to true?
If you have another idea of a $post property I can set, let me know.
Forum: Plugins
In reply to: [Advanced Sidebar Menu] Displaying Page Menu on Post PageThanks, Mat. If you could let me know when that version is released, I will purchase and use it.
Forum: Plugins
In reply to: [Brilliant Web-to-Lead for Salesforce] Filter email field for Gmail and YahooNevermind. I found the answer here:
https://ww.wp.xz.cn/plugins/salesforce-wordpress-to-lead/
Thanks!
Forum: Plugins
In reply to: [Simple Membership] Integrating with Facebook loginIs there some way to use some PHP code to log someone in that isn’t going through your login? For example, something like:
SwpmMemberUtils::log_member_in(‘[email protected]’);
If there were a command to do this, I could use some WordPress hooks to log someone in to the Simple Membership plugin after they login via Facebook or WordPress.
Other than a few commands on your support pages, I did not see a full API to access your plugin. Does something like what I’ve got above exist? Alternatively, can you please list all the commands that go with “SwpmMemberUtils”? Thanks.
Forum: Plugins
In reply to: [Simple Membership] Integrating with Facebook loginThanks for the quick response. Is there a way to programmatically (using PHP) log somebody in to the Simple Membership plugin so I can work around this?