mfebrey
Forum Replies Created
-
Thank you. Have just sent.
Hello! Thanks for the reply. I can’t use the form on your website as the product name isn’t populating. I believe this is a function of us using the free version. I don’t see a way to create an acct to login with. What other options do I have?
Thank you!- This reply was modified 2 years, 7 months ago by mfebrey.
Forum: Plugins
In reply to: [Print, PDF, Email by PrintFriendly] send input field data (no form tag)Thank you for the reply. Just to clarify, form data can not be carried over to PDFs or Print screen using this plugin?
We have purchased the pro version as well. Please let me know if you need confirmation for support.
Hey! Have you found what’s generating the files??
We have the same issue. Our site went down because we had more than 250,000(!!!) files. Found the files in wp-content/uploads. All named similiar to this:
et-divi-dynamic-15144-late-lM4AQb.tmpHave begun manually deleting the files which brought our site back up. BUT still not sure where these are coming from. Need to fix the source issue.
Forum: Plugins
In reply to: [Product Input Fields for WooCommerce] Field display on SHOP pageExcellent, thank you! The shortcode worked like a charm.
Hello, never found out what the issue was. If a page is duplicated (or some sort of builder library layout item used that contains a gallery) customizing the setting for the gallery doesn’t work. Have to delete and re-embed the gallery for each page preventing the use of templated layout.
This wasn’t a premium version question. This was never resolved.
Thank you.
- This reply was modified 6 years, 2 months ago by mfebrey.
Any further thoughts would be appreciated! Thanks.
Hello! I don’t believe this is a premium version question. I am using the free version and the option to turn the hover on/off is available. Is the issue that I’m having that in order for this to work I need to purchase the premium? Happy to do so if that’s the case, but the option isn’t grayed-out and is clickable in the free.
Thank you for the reply!
MI’m having the same issue. Tried setting up the thumbs as a square and the crop as a square, it still stretches the thumbnail. Do you have an ETA for when this will be fixed?
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Cant’ get Venmo to showJesse! I appreciate your confirmation. It does appear to be working now. Thank you very much.
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Cant’ get Venmo to show**Edit: switched to unresolved**
The Venmo button is not showing again. Made no changes to the API setting or plugin…? I’m at a loss. Any thoughts??
Thank you.
Forum: Plugins
In reply to: [WooCommerce PayPal Checkout Payment Gateway] Cant’ get Venmo to showJust ran a plugin update and the button now shows! \m/
- This reply was modified 6 years, 4 months ago by mfebrey.
Forum: Plugins
In reply to: [Custom Post Type UI] Filter/multi-taxonomy queryFINAL WORKING CODE
I hope this benefits someone else. Thanks a ton for the help Michael Beckwith!
I am passing query vars via GET. This code was placed in my child theme folder and saved as filters.php. Then created a “Search” page in WordPress and assigned it the “Filters” template.
Sample URL: https://www.fshneco.com/v2/search/?myloc=denver-co&myjob=model
<?php /* Template Name: Filters */ //grab variables from page url $loc = htmlspecialchars($_GET["myloc"]); $job = htmlspecialchars($_GET["myjob"]); $args = array( //query only these custom post types 'post_type' => array('collab', 'event'), //argument specifically for taxonomy 'tax_query' => array( //AND because both conditions need to be met 'relation' => 'AND', //search tax terms based on GET vars from above array( 'taxonomy' => 'location', 'field' => 'slug', 'terms' => $loc, ), array( 'taxonomy' => 'job_titles', 'field' => 'slug', 'terms' => $job, ), ), ); //the actual query $query = new WP_Query( $args ); //loop with results if ( $query->have_posts() ) { while ( $query->have_posts() ) { $query->the_post(); $title = get_the_title(); echo "Success= ".$title." <br>"; } } else { echo "No results found."; }; wp_reset_postdata(); ?>Forum: Plugins
In reply to: [Custom Post Type UI] Filter/multi-taxonomy queryNo errors from the page itself but found this in the log:
[autoindex:error]… Cannot serve directory /home/firestyleadmin/public_html/v2/wp-content/uploads/2019/05/: No matching DirectoryIndex (index.html.var….
Could this be the result of my using the full path to the file and not a WP default directory structure?
ie
http://fshneco.com/v2/wp-content/themes/divi-child/filters-test.phpI realize this is well outside your scope. Will pay for time.