HenriLindeberg
Forum Replies Created
-
Forum: Plugins
In reply to: [Popups - WordPress Popup] Polylang support not workingThe rules I have are following: “Page Type” “is equal to” “All Pages” AND “Mobile Phone” “is not equal to” “True”.
Also I need to add code to functions.php to enable translations for PopUp-s. It is not enabled by the plugin itself.
The code I added to functions.php is the following:add_filter( 'pll_get_post_types', 'add_cpt_to_pll', 10, 2 ); function add_cpt_to_pll( $post_types, $is_settings ) { if ( $is_settings ) { // hides ‘popups’ from the list of custom post types in Polylang settings unset( $post_types['spucpt'] ); } else { // enables language and translation management for ‘popups’ $post_types['spucpt'] = 'spucpt'; } return $post_types; }
Forum: Plugins
In reply to: [Popups - WordPress Popup] Polylang support not workingAny update on this matter?
Thanks,
HenriForum: Plugins
In reply to: [Popups - WordPress Popup] Polylang support not workingYes i have the latest version.
I also have this issue. Would be great to get this code working ??
Thanks!Forum: Plugins
In reply to: [Category Posts in Custom Menu] WooCommerce hidden products visible in menuI added the following code but it didn’t do anything.
function my_cpcm_filter_product_visibility( $query_arr, $post ) { // Visibility key in WooCommerce $query_arr['visibility'] = get_post_meta( $post->ID, '_visibility', true ); return $query_arr; } add_filter( 'cpcm_filter_posts_query', 'my_cpcm_filter_product_visibility', 10, 2 );
Forum: Plugins
In reply to: [BuddyPress Groups Extras] Cloning 1 page for all groupsI would also like to know if that is possible.
Forum: Plugins
In reply to: [Hyyan WooCommerce Polylang Integration] Duplicate listings errorI also have problem with dublicating. There is no option to dublicate variable products.
I have the same problem. Don’t have any Idea where it comes from.
Have you had the chance to look into the this issue?Best,
HenriForum: Plugins
In reply to: [WooCommerce POS - Point of Sale] Save Changes on Settings are not workingThis emulation method didn’t work for me. I still can’t save settings.
Restore Defaults works fine.
Forum: Plugins
In reply to: [External Database Authentication Reloaded] New version login problemUpdated to 1.2.3 and it seems to work now.
Forum: Plugins
In reply to: [External Database Authentication Reloaded] New version login problemI tired the version 1.2.2 on another site also where I disabled all other plugins. I use Other as the authentication method and “$password2 = md5($username.$password);” (without quotes) as the custom php hash code. But still I can log in as any user (user will be created) or if user exists and I enter wrong password, it will change it in the db (wp db).
I checked and there is no log file in wp-content folder (although debug is enabled).
Forum: Plugins
In reply to: [External Database Authentication Reloaded] ERROR: Invalid password.Thanks. It was my problem. The password used salt so I had to use Other as encryption method.
Forum: Plugins
In reply to: [WP Supersized] SQL Injection Problem with NextGen and WP SupersizedNextGen came out with an update version 2.0.76 and now these two plugins work together nicely again.
Forum: Plugins
In reply to: [WP Supersized] SQL Injection Problem with NextGen and WP SupersizedUpdate on my side is that it worked fine with WP 4.1.1, but when NextGen was updtaed to 2.0.74, then WP Supersized couldn’t load galleries anymore.
Forum: Plugins
In reply to: [WP Supersized] SQL Injection Problem with NextGen and WP SupersizedI’m also having problem loading a NextGen gallery. No image will show up and the loading circle stays.