kiranl
Forum Replies Created
-
Forum: Plugins
In reply to: [Quick Buy For Woocommerce] can not customize buy now buttonAny solution for this.
I was written styles in the backend, but styles were not applying to the button on frontend.Path: woocommerce-quick-buy > includes > class-frontend.php line no: 46
commented the original path and given the path to my custom-stylesheet directory. Then only the styles were applying.For example:
public function enqueue_style_script() { wp_enqueue_style( 'custom-style', plugins_url() . '/woocommerce-quick-buy/includes/css/style.css' ); wp_enqueue_script( WCQB_DB . '_frontend', WCQB_JS . 'frontend.js', array( 'jquery' ), WCQB_V ); //wp_add_inline_style( WCQB_DB . '_plugin_style', $this->render_quick_buy_style() ); wp_add_inline_style( 'custom-style',$this->render_quick_buy_style() ); }
- This reply was modified 6 years, 10 months ago by kiranl.
Forum: Plugins
In reply to: [Gantry 5 Framework] Gantry 404 UrlThanks for your reply,
Yes, we have seeen this type of plugin.
While using this plugin, when we enter our custom url in this plugins field.
It will redirect correctly to our custom url(/page-not-found).
But we will get “The page isn’t redirecting properly”, not from the error outline.We need to create a wordpress page with url(/page-not-found), but how to assign this page to error template in gantry5 to display only header and footer with some 404 content.
Note: Also can you suggest that when we try to create a child theme, frontend getting blank, not calling anything from parent theme, just Activated from the backend without any error… thats it. No sections from parent theme outlines and frontend getting blank…
- This reply was modified 7 years, 3 months ago by kiranl.