jokr1985
Forum Replies Created
-
Hi @quantum_leap ,
thanks for checking it.
I thought a filter or customizing in gp might be required to disable it, when reading this or asking the AI:
https://github.com/WordPress/gutenberg/issues/59797But in the meanwhile I found out the core lightbox is added to the block code itself.
By removing the block and adding it again, the wrong lightbox was gone.Thanks and kr,
JoForum: Plugins
In reply to: [VS Event List] Timezone in ics feedHi,
feeds can also be imported into Gmail, Outlook etc.
TZ can be different there, that’s why you should add the website TZ…KR
JoForum: Plugins
In reply to: [VS Event List] Add TagsHi Guido,
thanks for your response.
I only want to add the Tag to the event and Elementor should display it.
With the code taken and adapted from here, I’m able to store Tags, but they seemto be CPT-specific. Can I have a solution to add posts (no CPT) Tags?
https://wordpress.stackexchange.com/questions/62260/how-to-add-tags-to-custom-post-type/** * Create taxonomies tag for CPT portfolio */ if ( ! function_exists( 'ns_register_vsel_tags' ) ) { function ns_register_vsel_tags() { $labels = array( 'name' => __( 'Tags', 'ns' ), 'singular_name' => __( 'Tag', 'ns' ), 'search_items' => __( 'Search Tags' ), 'popular_items' => __( 'Popular Tags' ), 'all_items' => __( 'All Tags' ), 'parent_item' => null, 'parent_item_colon' => null, 'edit_item' => __( 'Edit Tag' ), 'update_item' => __( 'Update Tag' ), 'add_new_item' => __( 'Add New Tag' ), 'new_item_name' => __( 'New Tag Name' ), 'separate_items_with_commas' => __( 'Separate tags with commas' ), 'add_or_remove_items' => __( 'Add or remove tags' ), 'choose_from_most_used' => __( 'Choose from the most used tags' ), 'menu_name' => __( 'Tags' ), ); $args = array( 'label' => __( 'Tag', 'ns' ), 'labels' => $labels, 'public' => true, 'publicly_queryable' => true, 'hierarchical' => true, 'show_ui' => true, 'show_in_menu' => true, 'show_in_nav_menus' => true, 'query_var' => true, 'rewrite' => array( 'slug' => 'tag', 'with_front' => false, ), 'show_admin_column' => false, 'show_in_rest' => true, 'rest_base' => 'tag', 'rest_controller_class' => 'WP_REST_Terms_Controller', 'show_in_quick_edit' => true, 'update_count_callback' => '_update_post_term_count', ); register_taxonomy( 'tag', array( 'event' ), $args ); } add_action( 'init', 'ns_register_vsel_tags', 0 ); }Thanks and kr,
JoForum: Plugins
In reply to: [Polylang] PolyLang & Yoast SEO variablesIn the meanwhile i have some doubts regarding the text translation.
Is there any way how i can remove the strings from Yoast?
I’ve already tried the following without success…function unregister_yoast_strings() { if(function_exists('pll_register_string')) { //disable Yoast strings because they seem to conflict with storing the _yoast_wpseo_title icl_unregister_string('title-page', 'wordpress-seo'); pll_register_string('title-page', '', 'wordpress-seo'); } } add_action( 'after_setup_theme', 'unregister_yoast_strings' );Forum: Plugins
In reply to: [Polylang] PolyLang & Yoast SEO variablesPS: Especially when using %%sitename%%
Oh was already reported…https://ww.wp.xz.cn/support/topic/empty-wizard-div-in-latest-update/
Forum: Plugins
In reply to: [Autoptimize] Conflict with Fancybox Pro Plugin compensate-for-scrollbarHi,
I’ve put the folders, but it was still not working.
When I put the folders plugins/responsive-lightbox/, plugins/responsive-lightbox-fancybox-pro/ it is working.
Is there a fix possible to make it working without excluding it?
Thanks
JoForum: Plugins
In reply to: [DoublewP TCPDF Wrapper] Not working in my functionLooks like it is working when I put
ob_clean();above output…Forum: Plugins
In reply to: [Simple Ticker] Link to TickerHi,
thanks 🙂
Can we have something like ticket[x]_link as additional parameter of the shortcode?
Thanks and kind regards
JoForum: Themes and Templates
In reply to: [GeneratePress] generate_single_featured_image_outputHi Tom,
we use GP Premium-Version 1.9.1
The purpose is to have
a) by default a thumbnail featured image on the right side and
b) add fancybox to it
except we disable it and put a large image, because afaik from the theme itself we cannot define per Post where to place the featured image and what size it should have.Kind regards
JoForum: Plugins
In reply to: [FancyBox for WordPress] Issue with borderHi,
as there was no solution provided, I have decided to go to “Responsive Lightbox” plugin with Fancybox premium addon.
Thanks and kind regards
JoForum: Plugins
In reply to: [FancyBox for WordPress] Issue with borderHi Mihaela,
this is not really the result I wanted to see and the issue with the Swipe on mobile phone is not resolved, too.
If possible I want to have the default look like here: https://teutonia-grossenlueder.de/Facybox-Look.png
Kind regards
Joand btw: I also don’t want to add the twitter API to my CSP (https://platform.twitter.com/widgets.js)
Forum: Plugins
In reply to: [FancyBox for WordPress] Issue with borderAdditionally I found out, the size of the bottom-border gets bigger,increases every time I swipe left to right on the mobile phone.
-> Swipe is not working…Forum: Themes and Templates
In reply to: [GeneratePress] generate_single_featured_image_outputHi Tom,
thanks, yes we have the Premium edition.
We got it from our website design agency.
But I can’t create a post in your support forum, because I don’t have the license myself.
Unluckily they are busy with other stuff and it does not change behavior.
But I consider it still as a bug, when your filter does not respect the settings of your options 🙂
In case you can’t support we need to live with this bad situation of having tow pictures in the post (one from the content and one from the featured image) 🙁
Thanks
Jo