Digital experiences for all disciplines
Forum Replies Created
-
Posted in: We hit Power Elite.
-
Hi David,
Fonts: Can you disable this plugin: WP Google Fonts and then also update the core WP: http://kennakay.com/wp-admin/update-core.php DONE
Error: Please add your FTP details, I’ll take a look. HERE IS THE FTP DETAILS,
http://WWW.KENNAKAY.COM, USER: Kennakay, PASS: Everything1!Caption Text: Currently, there is not a way to do this that I can see. I’ll feedback this to the team as it could be handy to insert basic HTML. THAT WOULD BE AWESOME TO HAVE THAT ABILITY. THANKS FOR PASSING IT ALONG.
Have a great day –
Isaac
HI David,
CUSTOM FONT: I saw the error message for FaktPro-Blond tff and wof files so I deleted the font and then reinstalled it. Cleared my cache and I’m still getting the error message. I’ve included the zipped font to this message for reference. The custom font on the menu in the header is AdelleSans-Semibold. The font that flashes before it on loading is a serif font.
Still am clueless as to how this is happening.ERROR: I noticed another loading error – it says I’m calling for multiple Google Maps APIs when I’m not calling any on the site. Any idea why this is happening?
VIDEO SPACING: I did empty my cache and loaded the page, http://kennakay.com/case-study-1-nicktoons-rebrand/, several times and the correct spacing is being displayed. Thanks.
IMAGE CAPTIONING TEXT: I’ve included a couple of screen shots to illustrate what I’m trying to achieve with the image caption text. I’d like the ‘title’ of the image to be on its own line with the supporting text underneath. I’ve used —- on either side of the image but would much prefer to not use the dashes and use CSS. Many thanks for looking into it for me.
Cheers,
Isaac
Attachments:
You must be logged in to view attached files.November 6, 2014 at 3:14 pm in reply to: Out of Stock on Variable Product to Sold Out – NOT BANNER #126236Yes, that worked. Obviously, I wasn’t paying close attention.
Thanks!Isaac
November 6, 2014 at 2:52 pm in reply to: Out of Stock on Variable Product to Sold Out – NOT BANNER #126231Thanks for getting back to me, Kyle.
I am not using a child theme – and when I tried adding the code in my functions.php as suggested above, the site crashed and had to reload the functions.php file via FTP.
Is there a specific line # in the functions.php file where the code snippet should be inserted? woocommerce said to put it in the customs section of the functions.php file but I did not see that section in my file.
Thanks for the assistance.Isaac
November 5, 2014 at 2:16 pm in reply to: Out of Stock on Variable Product to Sold Out – NOT BANNER #125872Thanks for sending me the php code for out of stock to sold out text change.
/**
* Change In Stock / Out of Stock Text
*/add_filter( ‘woocommerce_get_availability’, ‘wcs_custom_get_availability’, 1, 2);
function wcs_custom_get_availability( $availability, $_product ) {// Change In Stock Text
if ( $_product->is_in_stock() ) {
$availability[‘availability’] = __(‘Available!’, ‘woocommerce’);
}// Change Out of Stock Text
if ( ! $_product->is_in_stock() ) {
$availability[‘availability’] = __(‘Sold Out’, ‘woocommerce’);
}return $availability;
It says “simply add the following code to the ‘custom functions’ area of your functions.php file” which I did not see in my functions.php so I added it to the end of the file and passed an error several times – wrapping it in <?php ?> didn’t work either. It would be really helpful if you could tell me which line to add it to in the functions.php file.
Cheers!
Isaac
-
Posted in: We hit Power Elite.