Chris Schrijver
Forum Replies Created
-
We basically the plugin does have something to do with the port because it’s not taken in to consideration when the plugin checks if it is on the homepage or not. Because this check fails (when the website is on a url with a custom port, ex. example.com:88), assets are not being loaded.
But my fix from the the initial message solves this. i’m using this now on our enviroment and it works.- This reply was modified 1 year ago by Chris Schrijver.
Forum: Fixing WordPress
In reply to: WordPress 6.1 remove sidebar text underlineStumbled upon the same issue. Didn’t want to do the css override. I didn’t want to have the css rule in the first place. This piece of php will remove the piece of css from the css output:
add_filter( 'wp_theme_json_get_style_nodes', function($nodes) { if (!is_array($nodes)) { return $nodes; } $nodes = array_filter($nodes, function ($node) { if ( !empty($node['selector']) && $node['selector'] == 'a:where(:not(.wp-element-button))' ) { return false; } return true; }); return $nodes; });
Forum: Themes and Templates
In reply to: [Astra] WordPress 6.1 Update Forces Underline on LinksStumbled upon the same issue. Didn’t want to do the css override. I didn’t want to have the css rule in the first place. This piece of php will remove the piece of css from the css output:
add_filter( 'wp_theme_json_get_style_nodes', function($nodes) { if (!is_array($nodes)) { return $nodes; } $nodes = array_filter($nodes, function ($node) { if ( !empty($node['selector']) && $node['selector'] == 'a:where(:not(.wp-element-button))' ) { return false; } return true; }); return $nodes; });
Forum: Themes and Templates
In reply to: [Astra] Remove links underline WP 6.1Stumbled upon the same issue. Did’t really liked the css override. Didn’t want to have the css rule in the first place. This piece of php will remove the piece of css from the css output:
add_filter( 'wp_theme_json_get_style_nodes', function($nodes) { if (!is_array($nodes)) { return $nodes; } $nodes = array_filter($nodes, function ($node) { if ( !empty($node['selector']) && $node['selector'] == 'a:where(:not(.wp-element-button))' ) { return false; } return true; }); return $nodes; });
Thanks man!
@hwk-fr Thanks. I’d tried that as well and solves the issue too. I was not sure if you wanted to change the DOM of the current layouts. But glad I could be of some help.
@hwk-fr Awesome! Thank you!
In the case that we experienced it the structure is as follows:
– Repeater
– Flexibel contentWould be awesome if you can include this fix in the next release.
Thanks.
Thank you!
Forum: Plugins
In reply to: [IP2Location Redirection] Bug found with From URL redirection (and solved)Great! Thank you very much!
Forum: Plugins
In reply to: [Pronamic Pay] Gravity forms in overlay shows all available payment methodsWhen will this be released? Last update on the plugin is 6 months ago ??
Forum: Plugins
In reply to: [Pronamic Pay] Gravity forms in overlay shows all available payment methodsAwesome! Thanks!
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] POS not showing in adminHere the content of the active_plugins option:
a:23:{i:0;s:29:"gravityforms/gravityforms.php";i:1;s:33:"woocommerce-nl/woocommerce-nl.php";i:2;s:45:"advanced-menu-widget/advanced-menu-widget.php";i:3;s:55:"advanced-post-types-order/advanced-post-types-order.php";i:4;s:53:"codestyling-localization/codestyling-localization.php";i:5;s:45:"enhanced-text-widget/enhanced-text-widget.php";i:6;s:19:"iwp-client/init.php";i:7;s:25:"option-tree/ot-loader.php";i:8;s:30:"redirect-list/redirectlist.php";i:9;s:47:"regenerate-thumbnails/regenerate-thumbnails.php";i:10;s:36:"sisow-for-woocommerce/sisowideal.php";i:11;s:33:"ssh-sftp-updater-support/sftp.php";i:12;s:33:"w3-total-cache/w3-total-cache.php";i:13;s:39:"wc-cash-on-pickup/wc-cash-on-pickup.php";i:14;s:75:"weight-based-shipping-for-woocommerce/woocommerce-weight-based-shipping.php";i:15;s:73:"woocommerce-distance-rate-shipping/woocommerce-distance-rate-shipping.php";i:16;s:85:"woocommerce-google-analytics-integration/woocommerce-google-analytics-integration.php";i:17;s:45:"woocommerce-myparcel/woocommerce-myparcel.php";i:18;s:80:"woocommerce-pdf-invoices-packing-slips/woocommerce-pdf-invoices-packingslips.php";i:19;s:35:"woocommerce-pos/woocommerce-pos.php";i:20;s:27:"woocommerce/woocommerce.php";i:21;s:24:"wordpress-seo/wp-seo.php";i:22;s:35:"wp-mail-options/wp-mail-options.php";}
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] POS not showing in adminThanks! Still interested in the list of active plugins?
Forum: Plugins
In reply to: [WooCommerce POS - Point of Sale] POS not showing in adminThe folders on my WP environment have the default names (woocommerce + woocommerce-pos).
Some details:
Ubuntu 14.04
Nginx
PHP-FPM 5.5.9What did you think of my solution? Personally I do not like it when a plugin works only on certain configurations.