writecraft
Forum Replies Created
-
Forum: Plugins
In reply to: [ShopWP] Missing product fieldsHi Andrew,
I’m pretty sure it wasn’t. I gave up on that app and bought WP Shopify Pro.
This seems to have helped, from known issues:
Sites using HTTPS
Do you use an SSL certificate on your site? If you’re having trouble connecting Jetpack to your WordPress.com account, try adding the following to your site’s wp-config.php file:define( ‘JETPACK_SIGNATURE__HTTPS_PORT’, 80 );
https://jetpack.com/support/getting-started-with-jetpack/known-issues/
Thanks!
Thank you!
The Log out everywhere else button under user profile does not clear the old sessions. Completely removing the the plugin and it’s settings, then reinstalling it does not remove these old user sessions.
Try readonly instead of uneditable:
[dynamictext StoveName readonly “CF7_get_post_var key=’title'”]
I found that somewhere in this support forum, and it worked for me.
Forum: Plugins
In reply to: [WordPress MU Domain Mapping] No pagination?Thanks Mike — your work-around worked for me, except I also had to change ‘ORDER BY id’ to ‘ORDER BY blog_id’ on my multisite network to get it to sort correctly. Hope there is some permanent fix for this soon.
Thought so. Thanks! Your plugin works great with this theme on other sites, so I’m guessing it’s a plugin issue. I’ll keep digging and let you know if I can solve the problem.
Forum: Plugins
In reply to: [WP-Filebase Download Manager] AJAX file browser not workingHaving the same problem on an intranet I manage. Seems to be an ajax issue. Files can be downloaded from simple links, but the tree views just give an endlessly spinning circle then a ‘not found’ message.
Forum: Plugins
In reply to: [Washington State Sales Tax for Shopp] Not working with Shopp 1.3.1?Shopp 1.3 made some changes to how plugins plug in, and this is a side-project for the developer. I’ll be looking into this since I rely on this plugin for multiple sites. Once I find out what updates are needed, I’ll get with the developer to upgrade this great plugin.
Forum: Plugins
In reply to: [Washington State Sales Tax for Shopp] Not validating zip codePS — you might want to allow country selection for downloads as well.
Forum: Plugins
In reply to: [Washington State Sales Tax for Shopp] Not validating zip codeBeen doing some fiddling around and think I’ve found a solution. Turns out your postal code validation required ‘Tax Downloads’ to be enabled, and then it removed the ability to select a country to ship to. So, in washington-state-sales-tax-for-shopp.php at line 54 after ‘//update hook’ I added :
add_action( 'wp_enqueue_scripts', array( &$this, 'force_zip_tax_script' ) );
Then modified zip-required.js as so:
checkZip = function ($toCheckout) { var $validZip = /^\d{5}(-\d{4})?$/; var $shipZip = $('#shipping-postcode').val(); var $shipCountry =$('#shipping-country').val(); if ($shipCountry=='US') { if (!$validZip.test($shipZip)) { ....
This seems to work well for me — you might want to consider it for future updates.
Thanks!
Forum: Plugins
In reply to: [Store Locator Plus?] Country/State selection issueSo — I’ve purchased Enhanced Map and Tagalong. I’ve found I can use categories=”US & Canada West Coast” in the shortcode, but is there a center_map=”Canada” or similar attribute to change the map center via shortcode? Thanks!
Forum: Plugins
In reply to: [Advanced Custom Fields (ACF?)] advanced custom plugin showing broken imageLooks like ACF uses an array now for their image fields, but haven’t updated their documentation. Put the array into a variable, then get the image url or id from the array, like this:
<?php if (get_field('image_field')) { // put the field array into a variable $imgarray = get_field( 'image_field' ); ?> // then extract the image url from the array <img src="<?php echo $imgarray['url'] ; ?>" alt=""/> <?php } //end if ?>
or this, to get a particular size:
<?php if (get_field('image_field')) { // put the field array into a variable $imgarray = get_field( 'image_field' ); // then extract the image id $size = "thumbnail"; // (thumbnail, medium, large, full or custom size) echo wp_get_attachment_image( $imgarray['id'], $size ); } //end if ?>
Forum: Plugins
In reply to: [Store Locator Plus?] Country/State selection issueBut the maps are still not working as I’d like. Being able to set the search radius and the map center or country in the shortcode would be awesome.
Forum: Plugins
In reply to: [Store Locator Plus?] Country/State selection issueGah! Figured this out myself — had the ‘Number to Show Initially’ set too low. Here was my problem . . .
So here’s what I’ve got, using shortcodes and only_with_tag.
This page comes up fine, showing all stores on the East Coast: https://kiwigrip.co/where-to-buy-kiwigrip/us-and-canada-east-coast-dealers-and-distributors/
But this one, for the west coast, I have to click the ‘Find KiwiGrip’ button for them all to show up, and I want to hide the search form: https://kiwigrip.co/where-to-buy-kiwigrip/us-and-canada-west-coast-dealers-and-distributors/
Is it because I’m in Olympia? I’ve turned off the location sensor, and fiddled with a bunch of the map settings. Sure would be nice if I could set the map center in the short code or something!