susan-bates
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Stripe Account and Pay PalHow do you test whether it works in pay pal?
Forum: Plugins
In reply to: [WooCommerce] Shipping Amount Does Not DisplayForum: Plugins
In reply to: [WooCommerce] Shipping Amount Does Not Displayhttps://artistbillmorton.com/wp-content/uploads/2017/03/2017-03-31-2.png
When I press update totals, nothing updates.
Forum: Plugins
In reply to: [WooCommerce] Shipping Amount Does Not DisplayForum: Plugins
In reply to: [WooCommerce] Stripe Account and Pay PalWordPress Environment
Home URL: https://artistbillmorton.com
Site URL: https://artistbillmorton.com
WC Version: 2.6.14
Log Directory Writable: /homepages/45/d675295481/htdocs/clickandbuilds/BillMortonCanadianArtist/wp-content/uploads/wc-logs/
WP Version: 4.7.3
WP Multisite: –
WP Memory Limit: 256 MB
WP Debug Mode: –
WP Cron:
Language: en_US
Server Environment
Server Info: Apache
PHP Version: 7.0.17
PHP Post Max Size: 64 MB
PHP Time Limit: 50000
PHP Max Input Vars: 5000
cURL Version: 7.38.0, OpenSSL/1.0.1t
SUHOSIN Installed: –
MySQL Version: 5.5.54 – We recommend a minimum MySQL version of 5.6. See: WordPress Requirements
Max Upload Size: 64 MB
Default Timezone is UTC:
fsockopen/cURL:
SoapClient:
DOMDocument:
GZip:
Multibyte String:
Remote Post:
Remote Get:
Database
WC Database Version: 2.6.14
woocommerce_sessions
woocommerce_api_keys
woocommerce_attribute_taxonomies
woocommerce_downloadable_product_permissions
woocommerce_order_items
woocommerce_order_itemmeta
woocommerce_tax_rates
woocommerce_tax_rate_locations
woocommerce_shipping_zones
woocommerce_shipping_zone_locations
woocommerce_shipping_zone_methods
woocommerce_payment_tokens
woocommerce_payment_tokenmeta
Active Plugins (4)
Akismet Anti-Spam by Automattic – 3.3.1a1
WooCommerce PayPal Express Checkout Gateway by Automattic – 1.1.2
WooCommerce Stripe Gateway by WooCommerce – 3.1.3
WooCommerce by WooThemes – 2.6.14
Settings
Force SSL:
Currency CAD ($)
Currency Position left
Thousand Separator ,
Decimal Separator .
Number of Decimals 2
API
API Enabled:
WC Pages
Shop Base: #43 – /shop
Cart: #45 – /shop/cart
Checkout: #47 – /shop/checkout
My Account: #49 – /shop/my-account
Taxonomies
Product Types: external (external), grouped (grouped), simple (simple), variable (variable)
Theme
Name: Virtue – Premium
Version: 4.0.6
Author URL: https://www.kadencethemes.com/
Child Theme: – If you’re modifying WooCommerce on a parent theme you didn’t build personally, then we recommend using a child theme. See: How to create a child theme
WooCommerce Support:
Templates
Overrides (WooCommerce): virtue_premium/woocommerce/archive-product.php,
virtue_premium/woocommerce/content-product.php,
virtue_premium/woocommerce/content-product_cat.php,
virtue_premium/woocommerce/content-single-product.php,
virtue_premium/woocommerce/loop/loop-end.php,
virtue_premium/woocommerce/loop/loop-start.php,
virtue_premium/woocommerce/loop/rating.php,
virtue_premium/woocommerce/loop/sale-flash.php,
virtue_premium/product-searchform.php,
virtue_premium/woocommerce/single-product/add-to-cart/external.php,
virtue_premium/woocommerce/single-product/add-to-cart/grouped.php,
virtue_premium/woocommerce/single-product/add-to-cart/simple.php,
virtue_premium/woocommerce/single-product/add-to-cart/variable.php,
virtue_premium/woocommerce/single-product/product-image.php,
virtue_premium/woocommerce/single-product/product-thumbnails.php,
virtue_premium/woocommerce/single-product/related.php,
virtue_premium/woocommerce/single-product/sale-flash.php,
virtue_premium/woocommerce/single-product/title.php,
virtue_premium/woocommerce/single-product/up-sells.php,
virtue_premium/woocommerce/single-product.php,
virtue_premium/woocommerce/taxonomy-product_cat.php,
virtue_premium/woocommerce/taxonomy-product_tag.phpForum: Themes and Templates
In reply to: [Virtue] Menu not showing up in MobileWhat about if I want to use the carousel slider like I did on the home page? It has captions and can fit images of different sizes. The feature slider does not appear to have these options. Does the premium theme have the carousel slider for different pages>
Forum: Themes and Templates
In reply to: [Portfolio Press] Functions PHP – get parse errorHave currently deleted functions.php so I could gain access to editor.
I love your website. I’m just downloading portfolio press and can’t believe how awesome you’ve made it look. How did you get the upward arrows to display the main navigation? Also fabulous work on the site. Very impressive.
Forum: Themes and Templates
In reply to: [Sketch] Make Social Links Open in a New TabThanks so much for your help.
Forum: Themes and Templates
In reply to: [Sketch] Make theme full widthI meant that the body would extend to the edge of the screen.
Forum: Themes and Templates
In reply to: [Sketch] Make Social Links Open in a New TabHow do you make all links open in a new window?
Forum: Themes and Templates
In reply to: [Sketch] Add a taglineThanks. It was the style.css that was wrong. I had it as styles.css.
I don’t know which php script is preferable in the functions.php file. Now I have the shorter one.
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );}
?>But is the longer one better?
<?php
function theme_enqueue_styles() {$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
?>
<?phpOr should I put both?
Also, now that I am working on a child theme as you suggested, I no longer have access to the editor for the Sketch files. Only the new style.css shows in my dashboard and when I try to make changes to it, it doesn’t work, I have to use a custom css that comes with Jetpack, so what is the point of a child theme? I can’t change the styles with the new stylesheet and I can’t see the old files from the original template and I can use Jetpack CSS and not have these files overwritten.
Can I import the parent stylesheet into my child theme because it and all the other files such as footer.php, which I wanted to change were not there.
Forum: Themes and Templates
In reply to: [Sketch] Trouble Making Child Theme with SketchThanks. That worked.
Forum: Themes and Templates
In reply to: [Sketch] Add a taglineNext I tried changing the functions.php to the simple version on the WP Codex page but still get the same error – stylesheet is missing
<?php
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
function theme_enqueue_styles() {
wp_enqueue_style( ‘parent-style’, get_template_directory_uri() . ‘/style.css’ );}
?>Forum: Themes and Templates
In reply to: [Sketch] Add a taglineHi, I upgraded to hosting to make the child theme, but I am having problems. I created a style.css and functions.php file in the root directory of sketch-child, but the dashboard tells me that the theme is broken because the stylesheet is missing.
I used this info for styles
/*
Theme Name: Sketch Child
Theme URI: https://jennifer.deliciousdesign.ca/sketch-child
Description: Sketch Child Theme
Author: Susan Bates
Author URI: https://deliciousdesign.ca
Template: sketch
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Tags: light, full width, two-columns, right-sidebar, responsive-layout, accessibility-ready, portfolio
Text Domain: sketch-child
*/and this info for functions
<?php
function theme_enqueue_styles() {$parent_style = ‘parent-style’;
wp_enqueue_style( $parent_style, get_template_directory_uri() . ‘/style.css’ );
wp_enqueue_style( ‘child-style’,
get_stylesheet_directory_uri() . ‘/style.css’,
array( $parent_style )
);
}
add_action( ‘wp_enqueue_scripts’, ‘theme_enqueue_styles’ );
?>
<?phpI got this info from www.remarpro.com – how to create a child theme. Upon reading it said that if your theme has two stylesheets, you have to enqueue them separately, but I have no idea how to do that. The other stylesheet is rtl.css
Please help.