CreativeFedora
Forum Replies Created
-
Forum: Plugins
In reply to: [SVG Support] SVG icon flickers on page loadThanks for the help! I appreciate it!
Forum: Plugins
In reply to: [SVG Support] SVG icon flickers on page loadThanks for looking into this! The site is a prototype that I’m working on. Here’s the URL: http://oak.machouse.com/.
The only svg icon in question that’s using your plugin is the real estate sign above the ‘home supply’ section under the hero header.
Forum: Plugins
In reply to: [SVG Support] SVG icon flickers on page loadThanks for following up. Is it possible to use a function within a child theme to make this happen?
Forum: Plugins
In reply to: [Advanced Shipment Tracking for WooCommerce] Customizer Doesn’t LoadMost excellent! When do you expect the next release to be available? I’m excited to get your plugin working with my online store!
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Field Cells Empty On ExportNo problem. The update fixed the Thickbox scroll issue on my end.
I have a follow up regarding exporting. My checkout form has additional information fields. Does the plugin allow for these fields to also be exported?
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Field Cells Empty On ExportInterestingly enough it was a WordPress version issue. I was running 4.8.3 and once I upgraded to 4.9 the Thickbox is able to be scrolled. The only issue is that WordPress limits the height of the Thickbox. I added this code to the theme functions.php file.
add_action('admin_head', 'thickbox_height'); function thickbox_height() { echo '<style> .woocommerce_page_wc-order-export #TB_ajaxContent {height: 500px !important; top: 20% !important;} .woocommerce_page_wc-order-export #TB_window {top: 20% !important;} </style>'; }The code adds CSS to the admin dashboard. The CSS will only target the page where the plugin in displays. The first line is for the height of the container. The second line is for the distance from the top.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Field Cells Empty On ExportThat didn’t work either. I ended up adding custom CSS to target WordPress’ Thickbox plugin and it’s height. Works fine now!
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Field Cells Empty On ExportStrange that a theme would remove the scroll bar. The scroll bar works fine on the main ‘Export’ tab for the plugin. Arrows don’t work either. They only scroll down the page underneath.
Forum: Plugins
In reply to: [Advanced Order Export For WooCommerce] Custom Field Cells Empty On ExportHey Alex,
Thanks. It’s working now.
I have a follow up question/issue. When I open up the ‘Set Up Fields to Export’ window I’m not able to scroll down to see the fields that I added. I’m using the latest versions of Firefox and Chrome on both Windows and Mac.
Forum: Plugins
In reply to: [WooCommerce Simply Order Export] Spinning Circle When ExportingUpdated to PHP 5.6 and the export works without issue.
Forum: Plugins
In reply to: [Responsive Lightbox & Gallery] Load Scripts Only On Home PageThanks. Is there documentation for the rl_lightbox_args filter hook?
Forum: Plugins
In reply to: [WooCommerce] Coupon Code Applied To Excluded ProductUnfortunately the thread was closed with no definitive resolution.
Forum: Plugins
In reply to: [Quick Paypal Payments] Only Load JS files on Button PagesThanks. I was able to successfully implement and execute the programming to only load the desired files on the desired pages. I still need to finesse the implementation, but as a first draft it’s working.
Forum: Plugins
In reply to: [Quick Paypal Payments] Only Load JS files on Button PagesNegative. It didn’t work. I just added the code to the functions file to see if it removed the code and it did not after viewing the source code.
Forum: Plugins
In reply to: [Quick Paypal Payments] Only Load JS files on Button PagesThanks for the response. I had a similar question regarding Contact Form 7 that also loads JS and CSS files on each page be default. Based on CF7 documentation I implemented these snippets of code to only display the files on desired pages.
Functions File
add_filter( 'wpcf7_load_js', '__return_false' ); add_filter( 'wpcf7_load_css', '__return_false' );Page Template
<?php if ( function_exists( 'wpcf7_enqueue_scripts' ) ) { wpcf7_enqueue_scripts(); } if ( function_exists( 'wpcf7_enqueue_styles' ) ) { wpcf7_enqueue_styles(); } ?>Can I follow the same pattern as above for Quick PayPal Payments?