Susannah Fisher
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] After update to version 4.3.0, my site broken@drwpcom I was having the same problem and followed the instructions above. Everything is back and I’ve deactivated the WOO Admin plugin. Since this is now built in the store plugin, I’m assuming I can delete the plugin, right? Thanks!
- This reply was modified 5 years, 10 months ago by Susannah Fisher.
Was this ever resolved? I’m having the problem right now – July 2018 – is there a fix or update. This is urgent – my client needs to launch this today!
Forum: Fixing WordPress
In reply to: Manually create a ‘contact bar’ above my website in HTMLTo change over to the new icons on the frontend, most likely you will adjust the icons using CSS (style.css) after you enqueue FontAwesome.
It really depends on how this particular theme is built, but since it’s WP free theme I’m going to guess the developer kept his/her code clean and straight forward.
I can’t do it right this moment, but if you don’t need this right this moment I’ll take a look at the theme over the weekend and write you out a list of procedures to replace the theme’s icons with the FontAwesome icons.
Just let me know, and I’ll add it to my project list. 😀
Forum: Fixing WordPress
In reply to: Manually create a ‘contact bar’ above my website in HTMLYou could enqueue FontAwesome to the functions.php file. First create a child theme that references your current theme – in your case Tora – making sure to include a copy of the functions.php in the child theme folder (don’t forget to activate your new child theme). Then use the following code to use FontAwesome instead of Eleganticons:
wp_enqueue_style( 'font-awesome', '//maxcdn.bootstrapcdn.com/font-awesome/latest/css/font-awesome.min.css', array(), CHILD_THEME_VERSION );PS if you need to know how to create a child theme read this: https://codex.wordpress.org/Child_Themes
😀
- This reply was modified 9 years ago by Susannah Fisher.