thad
Forum Replies Created
-
Forum: Plugins
In reply to: [GatherContent Plugin] Pages not in correct order when importingThanks for the reply Mat,
So even if we order our pages the way we want them within GatherContent, the plugin just imports them in alphabetical order by default? It’s a little cumbersome when you import 150+ pages and need to reorder them. Perhaps this is a feature to consider down the road.
Did you ever solve this?
I’m getting the same error.
Forum: Plugins
In reply to: [Portfolio Slideshow] 1.11.0 Update Breaks Display Setting ControlsI’m seeing the issue in version 1.11.1 and WordPress 4.4. My configured settings are not taking effect on my slideshow using the default shortcode [portfolio_slideshow]
Forum: Plugins
In reply to: [Favorites] Delete list itemsThis feature is “kind of” available.
I ended up setting the text on the Button Text (Favorited)* setting to “Removed”
Forum: Plugins
In reply to: [WooCommerce] Error 402 : Unable to create order. Please try againI was having this error, in my case – it definitely wasn’t WooCommerce related.
When setting up my WordPress install, I opted to make a rather long table prefix. Unfortunately, MySQL limits the number of characters that you can have in a table name. This caused a handful of WooCommerce tables to NOT be created when the plugin was activated.
To solve this, I changed the table prefix to something much shorter and deactivated/reactivated WooCommerce.
Hope this helps someone!
Forum: Plugins
In reply to: [WooCommerce] Site broken in Chrome (SSL issue)Thanks @frique !
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorThank you!
I have a license through the company I work for so I can test whenever your update is released. If you want to share the “beta” changes, I’d also be happy to test before you release an official update.
Forum: Plugins
In reply to: [Zero Spam for WordPress] Gravity Forms entry sent to spam in errorSame :/
Forum: Plugins
In reply to: [Zero Spam for WordPress] All Gravity Forms entries getting spammedI’m having the same issue.
I’m only seeing this on one website thus far.
Unfortunately, no…
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] plugin broken on 3.9.1, any alternative?This plugin looks promising, but it is in beta: https://gravityview.co/
Forum: Plugins
In reply to: [Advance WP Query Search Filter] Display Search Results on a Specific PageI was able to resolve the issue by removing the meta filter of ‘title’ that I had selected. I assumed this would have been for the post title but I think a co-worker setup a custom meta field called ‘title’.
Forum: Plugins
In reply to: [Advance WP Query Search Filter] Display Search Results on a Specific PageHi TC,
The form exists and is displaying on page.
Forum: Plugins
In reply to: [Advance WP Query Search Filter] How is it possible to avoid the Search AllI was able to accomplish this on a single radio button “all” that I wanted to hide.
<script> $( document ).ready(function() { $('input[type="radio"][value="wqsftaxoall"]').css('display','none'); }); </script>Forum: Plugins
In reply to: [Advance WP Query Search Filter] Display Search Results on a Specific PageHello,
I’m attempting to have 2 different custom results pages for different forms, I have modified your code above:
<?php if(wp_verify_nonce($_GET['s'], 'awqsfsearch') ) //this will verify that the search is from the plugin { if($_GET['formid'] == '7810'){ include 'search-industry-partners.php' ; } if($_GET['formid'] == '7840'){ include 'search-architect-directory.php' ; } } else { ?>For the second form, ID 7840 – every time I run a search, I get the results page for the first form, ID 7810.
I tried using an else statement instead and got a white screen.
Any ideas as to what could be causing this?
Thank you