BARTNKCMO
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Customizr] Woocommerce and Functions.phpNo luck so far .. Is the Enque function still considered relevant in the child theme and if so should it be placed in the functions.php or using the @import in style.css for this theme ?
`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: [Customizr] Customize text of search buttonGiorgio25b thanks for that link to the plugin… Did not mean to hijack the thread. I did notice that with the childify me plugin though that for some reason if you make changes in the functions.php area alot of times it does not work.Especially functions pertaining to woocommerce.
Working on seeing why this is and will start a new thread about it later this evening..
Forum: Themes and Templates
In reply to: [Customizr] Customize text of search button@giorgio25b I noticed on the link that you provided for the child theme. I went there and saw that you could then click to get a download version of the child theme all that did was take you to a gallery of websites using Customizr.
Any suggestions on where to find the download ?
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to MenuFound the issue I was blurry eyed and forgot to add in the ” . ” before the .ini file I had created
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to MenuTried the test and put a page in front of the HOME section like you suggested and everything saved properly .. Any other suggestions?
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to MenuIs there a way around the issue? I have a pretty extensive menu system for all of my products
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to Menu@rdellconsulting Did you by chance have time to take a look at what I was speaking about ?
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to MenuOk taken out of maintenance mode. Sorry was working with a customer on the phone and not paying attention to the thread
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to MenuI can take it out of maintenance now for you
Forum: Themes and Templates
In reply to: [Customizr] Pages not saving to Menueatgafftaperadio.com
Forum: Plugins
In reply to: [WooCommerce] Is there an update for this ?Worked perfectly thank you sir.
Forum: Plugins
In reply to: [WooCommerce] Is there an update for this ?Thanks Mike for the response will try that and get everything back up and running..
Forum: Themes and Templates
In reply to: [Customizr] Updated child Theme for download? HELP@denzel Chia
” You should only add your custom css in style.css file of your Child Theme. You can add your custom PHP codes in functions.php ”
There was an issue of trying to create the proper child theme and finally got something to work. Not completely but it is somewhat functioning.
And only the portions that were copied into the child theme recommend by the directions from the authors website such as header.php , footer.php ,inc folder along with parts folder and 1 main footer file. So I can make changes and not mess with the core functions that usually get updated
What I am finding is that the new version of woocommerce is having issues with the recent update.
Forum: Plugins
In reply to: [WooCommerce] Hide FREE SHIPPINGTried the snippet you posted and still both options show up ..
Forum: Themes and Templates
In reply to: [Customizr] Updated child Theme for download? HELPOk finally got the child theme to work so far but noticed when I add anything to the Functions.php it does not play happy with it Also noticed that if I insert the ( inc folder and the parts folder ) into the child theme and try to edit the main footer file it does not like those changes either.
The child theme folder consists of style.css , function.php copies of customizr header and footer an inc folder with parts folder inserted and the main footer file
/* Theme Name: Customizr Child Theme URI: https://themesandco.com/customizr Description: A child theme for the Customizr WordPress theme. This child theme simply includes 2 files : style.css to add your custom css and functions.php where you can extend Customizr's core code. In order to keep your code as clean and flexible as possible, try to use Customizr's hooks API for your customizations. Do something awesome and have fun ! Author: Nicolas Guillaume (nikeo) Author URI: https://themesandco.com Template: customizr Version: 1.0.0 */ /* Your awesome customizations start right here ! -------------------------------------------------------------- */
<?php /** * This is where you can copy and paste your functions ! */