jwiere03
Forum Replies Created
-
Forum: Plugins
In reply to: [NS Cloner - Site Copier] Allow custom domains in subdomain installI second this. We are setting up about 110 subsites that are being built with subdomains. split pretty evenly between two different domains. For 1/2 of them I have to change and then do a find and replace after creating. I wish we could just use the cloner to set them up. Additional we have a handful that are being added with their own custom domain.
Forum: Plugins
In reply to: [Edit Entries for Gravity Forms] Does this work on a multi site network?Thank you, problem resolved.
Forum: Plugins
In reply to: [Constant Contact + WooCommerce] Can’t connectYea I never got it to work either @pcampagna2014. I just started reviewing orders and seeing if someone checked the signup box and manually adding them to CC.
Forum: Plugins
In reply to: [Constant Contact + WooCommerce] Can’t connectIt does show WooCommerce there. But on the admin side of my site it still says “Connect with Constant Contact.
Thanks for the information @3sonsdevelopment I had been under the impression that these signups used the core password requirements unless you unhooked them. I will look into creating some custom requirements for this.
Forum: Plugins
In reply to: [The Events Calendar] Blurry Event Featured ImageIt looks like you are using the medium image size (300px X 200px) and trying to stretch it. I had the same issues.
Go to
the-events-calendar/src/views/list/single-event.phpEdit line 71
<?php echo tribe_event_featured_image( null, 'medium' ); ?>
to
<?php echo tribe_event_featured_image( null, 'large' ); ?>
and save the edited version of single-event.php in the child theme you are using creating folders tribe-events/list and placing the new single-event.php in there.
This will override the single-event.php template from the plugin with a new one in the theme that uses the large thumbnail image instead of the medium.
Forum: Plugins
In reply to: [Connections Business Directory] Custom orderingLooks like i justed needed to use “order_by=”id|SPECIFIED” and that solves is.
[connections id="3,2,1" order_by="id|SPECIFIED"]
Forum: Plugins
In reply to: [Download Manager] File is accessible with url when not logged inLike a lot of WordPress websites this one is on WP Engine. I used their Redirect Rules to create this regex redirection (I just redirect back to the homepage) and during some brief initial testing this seems to work.
/wp-content\/uploads\/download-manager-files(\/(?i).*)$
Forum: Plugins
In reply to: [Download Manager] File is accessible with url when not logged inOk, I tested it on a local environment and it works. Unfortunately the site we wanted to use this for is on nginx so the .htaccess file isn’t doing anything.
Forum: Plugins
In reply to: [WooCommerce] Show variations in a list on product pageI don’t want to add extra plugins. I was able to use get_available_variations(); to get what I needed. A simplified version of what I did is below, it was placed in the content-single-product.php file
<?php $product = wc_get_product(); if ( $product->is_type( 'variable' ) ) { $variations = $product->get_available_variations(); foreach ($variations as $key => $value){ $scs_wc_size = $value['attributes']['attribute_pa_size']; echo $scs_wc_size. ' ' . $value['price_html'].'<br/>'; } } ?>
I was only showing the price and name of each variation, but there are is a lot of data that you could use from this. I also did some extra html formatting and used str_replace and ucwords functions to format my text.
Forum: Plugins
In reply to: [Yoast SEO] Meta Description Length only Showing Orange colorA recent update “Changes the maximum meta description length from 320 to 156 characters.” and it looks like currently, you are using 232 characters. You say that no matter how many words you put in it’s always orange, are you sure you have cut it down under 156 characters?
I was not logged in when I tested the page. I have also noticed that it appears we get visitors and form submissions from ip addresses in countries that are supposed to be blocked.
Forum: Plugins
In reply to: [Memphis Documents Library] Remove “Goto Post” optionThank you
Forum: Plugins
In reply to: [WooCommerce] Resize image lightboxLooks like the lightbox sizing and placement is set in this file contained in the WooCommerce plugin: /woocommerce/assets/css/photoswipe/photoswipe.css
I have tried adding a copy of this file to my child theme to override the plugin version, however so far it doesn’t seem to work. Changes to the themes style.css also don’t seem to have any affect on the lightbox.
Currently I can only restyle the lightbox by editing that file in the plugin, but I’m still working on it and will post if I find a solution as I am sure there are others who would like to edit the way this is displayed.
Forum: Plugins
In reply to: [WooCommerce] Resize image lightboxSure, I’m working on a local environment. But I threw up a new install with WooCommerce here and even on a different theme you can see that the lightbox takes up the whole page. It seems like WooCommerce lightboxes used to look more like this. I would like something like this so that the whole product page isn’t covered up when viewing the images.