Forum Replies Created

Viewing 15 replies - 1 through 15 (of 132 total)
  • Thread Starter Kim Soler

    (@kimso)

    Hi @spellhammer, no, I haven’t found a solution. I posted on Polylqng support forum but they haven’t responded…

    • This reply was modified 1 year, 5 months ago by Kim Soler.
    Thread Starter Kim Soler

    (@kimso)

    Ok @yingscarlett thank you.

    I have been some time off from editing in WordPress and I though it was a bug.

    Thread Starter Kim Soler

    (@kimso)

    Hi @yingscarlett, if I drag and resize it to the bottom, it keep the “slider” bar on the bottom.

    Now I have checked with other theme and with plugins that add widgets to sidebar (Polylang) and the issue is still here, so maybe it’s not a GP problem.

    But I have checked that this behavior that disappears If I activate the GaenerateBlocks plugin.

    Thread Starter Kim Soler

    (@kimso)

    @threadi this screen was the standard image editor before WordPress 6.3, I don’t have any plugin with this feature, it was only a screenshot I find on google to show how it was before, what I wanted is help is to have this feature back.

    Anyway, I find this plugin to enable again this feature: Edit Image Thumbnails Separately By WordPress Core Contributors.

    As this plugin description says: Separate editing of image thumbnails is deprecated and disabled since WordPress 6.3.

    Thread Starter Kim Soler

    (@kimso)

    Hi @algolplus,

    Here’s a screenshot where you can see the 4 decimals:

    Thread Starter Kim Soler

    (@kimso)

    Solved.

    I had this code to add a Privacy policy checkbox to the register form (not the checkout register form):

    add_action( 'woocommerce_register_form', function () {  
    	$privacy_policy_url = get_privacy_policy_url();
    	woocommerce_form_field( 'politica_privacidad_registro', array(
    		'type'          => 'checkbox',
    		'class'         => array('form-row rgpd'),
    		'label_class'   => array('woocommerce-form__label woocommerce-form__label-for-checkbox checkbox'),
    		'input_class'   => array('woocommerce-form__input woocommerce-form__input-checkbox input-checkbox'),
    		'required'      => true,
    		'label'         =>  sprintf( __( 'I have read and agree to the website %s.', 'generatepress-child' ), '<a href="' . esc_url( $privacy_policy_url ) . '" target="_blank">' . __( 'privacy policy', 'woocommerce' ) . '</a>' ),
    	)); 
    }, 10);

    And this to check if the field was selected:

    add_filter( 'woocommerce_registration_errors', function ( $errores, $usuario, $email ) {
        if ( ! (int) isset( $_POST['politica_privacidad_registro'] ) ) {
            $errores->add( 'politica_privacidad_registro_error', __('-- Please read and accept the privacy policy.','generatepress-child') );
        }
    return $errores;
    }, 10, 3);

    Now I have changed to this and it’s working:

    add_filter('woocommerce_registration_errors', 'custom_registration_errors', 10, 3);
    
    function custom_registration_errors($errors, $username, $email) {
        if (is_checkout()) {
            return $errors;
        }
        if (!isset($_POST['politica_privacidad_registro']) || intval($_POST['politica_privacidad_registro']) !== 1) {
            $errors->add('politica_privacidad_registro_error', __('Please read and accept the privacy policy.', 'generatepress-child'));
        }
        return $errors;
    }
    Thread Starter Kim Soler

    (@kimso)

    Hi @xue28 I don’t have more info about this, It’s an option of GMC, I think that google get the url and crawls all product urls to generate the feed. I suppose it takes the data from the schema markup, and it freaks out with prices with 4 decimals as I commented on the first post.

    Thread Starter Kim Soler

    (@kimso)

    Hello @babylon1999,

    No, I don’t use de Google Ads and listings extension.

    I haven’t created any feed in Google Merchant Center, it is configured with the source as “Web site crawling”.

    Here’s the system report:

    ### WordPress Environment ###
    
    WordPress address (URL): https://mydomain.com
    Site address (URL): https://mydomain.com
    WC Version: 7.6.0
    REST API Version: ✔ 7.6.0
    WC Blocks Version: ✔ 9.8.4
    Action Scheduler Version: ✔ 3.5.4
    Log Directory Writable: ✔
    WP Version: 6.2.2
    WP Multisite: –
    WP Memory Limit: 256 MB
    WP Debug Mode: –
    WP Cron: ✔
    Language: es_ES
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: nginx/1.22.1
    PHP Version: 7.4.33
    PHP Post Max Size: 50 MB
    PHP Time Limit: 120
    PHP Max Input Vars: 1000
    cURL Version: 7.29.0
    NSS/3.53.1
    
    SUHOSIN Installed: –
    MySQL Version: 5.5.68-MariaDB
    Max Upload Size: 50 MB
    Default Timezone is UTC: ✔
    fsockopen/cURL: ✔
    SoapClient: ✔
    DOMDocument: ✔
    GZip: ✔
    Multibyte String: ✔
    Remote Post: ✔
    Remote Get: ✔
    
    ### Database ###
    
    WC Database Version: 7.6.0
    WC Database Prefix: drn_
    Tamaño total de la base de datos: 374.15MB
    Tamaño de los datos de la base de datos: 218.54MB
    Tamaño del índice de la base de datos: 155.61MB
    drn_woocommerce_sessions: Datos: 16.02MB + Índice: 0.52MB + Motor InnoDB
    drn_woocommerce_api_keys: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_woocommerce_attribute_taxonomies: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_woocommerce_downloadable_product_permissions: Datos: 0.02MB + Índice: 0.06MB + Motor InnoDB
    drn_woocommerce_order_items: Datos: 0.33MB + Índice: 0.13MB + Motor InnoDB
    drn_woocommerce_order_itemmeta: Datos: 2.52MB + Índice: 3.03MB + Motor InnoDB
    drn_woocommerce_tax_rates: Datos: 0.02MB + Índice: 0.06MB + Motor InnoDB
    drn_woocommerce_tax_rate_locations: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_woocommerce_shipping_zones: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_woocommerce_shipping_zone_locations: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_woocommerce_shipping_zone_methods: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_woocommerce_payment_tokens: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_woocommerce_payment_tokenmeta: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_woocommerce_log: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_actionscheduler_actions: Datos: 1.50MB + Índice: 0.70MB + Motor InnoDB
    drn_actionscheduler_claims: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_actionscheduler_groups: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_actionscheduler_logs: Datos: 0.45MB + Índice: 0.39MB + Motor InnoDB
    drn_aioseo_cache: Datos: 0.48MB + Índice: 0.03MB + Motor InnoDB
    drn_aioseo_notifications: Datos: 0.11MB + Índice: 0.06MB + Motor InnoDB
    drn_aioseo_posts: Datos: 5.52MB + Índice: 0.25MB + Motor InnoDB
    drn_aws_cache: Datos: 2.52MB + Índice: 0.00MB + Motor InnoDB
    drn_aws_index: Datos: 86.72MB + Índice: 76.23MB + Motor InnoDB
    drn_commentmeta: Datos: 0.08MB + Índice: 0.06MB + Motor InnoDB
    drn_comments: Datos: 0.44MB + Índice: 0.44MB + Motor InnoDB
    drn_defender_audit_log: Datos: 7.47MB + Índice: 8.47MB + Motor InnoDB
    drn_defender_email_log: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_defender_lockout: Datos: 2.52MB + Índice: 2.30MB + Motor InnoDB
    drn_defender_lockout_log: Datos: 3.31MB + Índice: 2.28MB + Motor InnoDB
    drn_defender_scan: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_defender_scan_item: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_gdpr_cc_options: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_gla_attribute_mapping_rules: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_gla_budget_recommendations: Datos: 0.22MB + Índice: 0.14MB + Motor InnoDB
    drn_gla_merchant_issues: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_gla_shipping_rates: Datos: 0.02MB + Índice: 0.05MB + Motor InnoDB
    drn_gla_shipping_times: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_grp_google_place: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_grp_google_review: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_grp_google_stats: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_links: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_custom_fields: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_dynamic_segment_filters: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_feature_flags: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_forms: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_mailpoet_log: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_mailpoet_mapping_to_external_entities: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_newsletters: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_newsletter_links: Datos: 0.02MB + Índice: 0.05MB + Motor InnoDB
    drn_mailpoet_newsletter_option: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_newsletter_option_fields: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_newsletter_posts: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_newsletter_segment: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_newsletter_templates: Datos: 2.52MB + Índice: 0.00MB + Motor InnoDB
    drn_mailpoet_scheduled_tasks: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_scheduled_task_subscribers: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_segments: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_sending_queues: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_settings: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_statistics_bounces: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_mailpoet_statistics_clicks: Datos: 0.02MB + Índice: 0.05MB + Motor InnoDB
    drn_mailpoet_statistics_forms: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_statistics_newsletters: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_statistics_opens: Datos: 0.02MB + Índice: 0.08MB + Motor InnoDB
    drn_mailpoet_statistics_unsubscribes: Datos: 0.02MB + Índice: 0.05MB + Motor InnoDB
    drn_mailpoet_statistics_woocommerce_purchases: Datos: 0.02MB + Índice: 0.06MB + Motor InnoDB
    drn_mailpoet_stats_notifications: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_subscribers: Datos: 0.02MB + Índice: 0.13MB + Motor InnoDB
    drn_mailpoet_subscriber_custom_field: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_subscriber_ips: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_subscriber_segment: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_mailpoet_user_agents: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_mailpoet_user_flags: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_nextend2_image_storage: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_nextend2_section_storage: Datos: 0.03MB + Índice: 0.06MB + Motor InnoDB
    drn_nextend2_smartslider3_generators: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_nextend2_smartslider3_sliders: Datos: 0.11MB + Índice: 0.03MB + Motor InnoDB
    drn_nextend2_smartslider3_sliders_xref: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_nextend2_smartslider3_slides: Datos: 0.11MB + Índice: 0.11MB + Motor InnoDB
    drn_options: Datos: 6.45MB + Índice: 1.59MB + Motor InnoDB
    drn_postmeta: Datos: 38.56MB + Índice: 23.06MB + Motor InnoDB
    drn_posts: Datos: 13.52MB + Índice: 3.86MB + Motor InnoDB
    drn_rtafar_rules: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_smush_dir_images: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_snippets: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_spectrom_sync: Datos: 0.02MB + Índice: 0.05MB + Motor InnoDB
    drn_spectrom_sync_log: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_spectrom_sync_sources: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_termmeta: Datos: 15.55MB + Índice: 19.06MB + Motor InnoDB
    drn_terms: Datos: 0.13MB + Índice: 0.13MB + Motor InnoDB
    drn_term_relationships: Datos: 1.52MB + Índice: 0.45MB + Motor InnoDB
    drn_term_taxonomy: Datos: 0.14MB + Índice: 0.19MB + Motor InnoDB
    drn_usermeta: Datos: 3.52MB + Índice: 6.03MB + Motor InnoDB
    drn_users: Datos: 0.25MB + Índice: 0.23MB + Motor InnoDB
    drn_viredis_product_pricing: Datos: 0.08MB + Índice: 0.00MB + Motor InnoDB
    drn_wccs_conditions: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wccs_condition_meta: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_wcpdf_invoice_number: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wc_admin_notes: Datos: 0.09MB + Índice: 0.00MB + Motor InnoDB
    drn_wc_admin_note_actions: Datos: 0.08MB + Índice: 0.02MB + Motor InnoDB
    drn_wc_category_lookup: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wc_customer_lookup: Datos: 0.20MB + Índice: 0.14MB + Motor InnoDB
    drn_wc_download_log: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_wc_order_coupon_lookup: Datos: 0.02MB + Índice: 0.03MB + Motor InnoDB
    drn_wc_order_product_lookup: Datos: 0.27MB + Índice: 0.34MB + Motor InnoDB
    drn_wc_order_stats: Datos: 0.20MB + Índice: 0.22MB + Motor InnoDB
    drn_wc_order_tax_lookup: Datos: 0.13MB + Índice: 0.13MB + Motor InnoDB
    drn_wc_product_attributes_lookup: Datos: 1.52MB + Índice: 1.52MB + Motor InnoDB
    drn_wc_product_download_directories: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_wc_product_meta_lookup: Datos: 1.52MB + Índice: 1.42MB + Motor InnoDB
    drn_wc_rate_limits: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_wc_reserved_stock: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wc_tax_rate_classes: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_wc_webhooks: Datos: 0.02MB + Índice: 0.02MB + Motor InnoDB
    drn_wdp_orders: Datos: 0.05MB + Índice: 0.05MB + Motor InnoDB
    drn_wdp_order_items: Datos: 0.02MB + Índice: 0.06MB + Motor InnoDB
    drn_wdp_persistent_rules_cache: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wdp_product_collections: Datos: 0.02MB + Índice: 0.00MB + Motor InnoDB
    drn_wdp_rules: Datos: 0.17MB + Índice: 0.03MB + Motor InnoDB
    drn_wfpklist_template_data: Datos: 0.03MB + Índice: 0.00MB + Motor InnoDB
    
    ### Post Type Counts ###
    
    addify_quote: 66
    addify_rfq: 4
    addify_rfq_fields: 5
    attachment: 4638
    customize_changeset: 1
    gp_elements: 13
    grw_feed: 1
    nav_menu_item: 79
    o-discount: 1
    o-list: 1
    page: 23
    post: 215
    product: 1130
    product_variation: 5462
    revision: 254
    seedprod: 2
    shop_coupon: 1
    shop_order: 1315
    shop_order_refund: 5
    wapl: 1
    wc_order_status: 14
    wck_fieldset: 7
    wp_block: 2
    wp_global_styles: 2
    wpcf7_contact_form: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ✔
    Hide errors from visitors: ✔
    
    ### Active Plugins (51) ###
    
    Admin Menu Editor: por Janis Elsts – 1.11
    Adminimize: por Frank Bültge – 1.11.9
    Advanced Dynamic Pricing for WooCommerce (Pro): por AlgolPlus – 4.1.6
    Advanced Woo Search PRO: por ILLID – 2.69
    All in One SEO: por All in One SEO Team – 4.3.9
    Auto Upload Images: por Ali Irani – 3.3.2
    Conditional Fields for Contact Form 7: por Jules Colle – 2.3.7
    Contact Form 7 - Dynamic Text Extension: por SevenSpark
    AuRise Creative – 3.2
    
    Contact Form 7: por Takayuki Miyoshi – 5.7.7
    Control del contenido: por Code Atlantic – 1.1.10
    Yoast Duplicate Post: por Enrico Battocchi & Team Yoast – 4.5
    GTM4WP: por Thomas Geiger – 1.16.2
    FG PrestaShop to WooCommerce Premium Customer Groups module: por Frédéric GILLES – 1.4.0
    FG PrestaShop to WooCommerce Premium: por Frédéric GILLES – 4.26.0
    Flexible Shipping: por Octolize – 4.21.1
    Font Awesome: por Font Awesome – 4.3.2
    GDPR Cookie Compliance: por Moove Agency – 4.12.3
    GenerateBlocks: por Tom Usborne – 1.7.3
    GP Premium: por Tom Usborne – 2.1.2
    Heartbeat Control by WP Rocket: por WP Rocket – 2.0
    Leira Letter Avatar: por Ariel – 1.3.7
    Maintenance mode for WooCommerce: por netfett – 1.0.16
    Max Mega Menu: por megamenu.com – 3.2
    Members: por MemberPress – 3.2.4
    WooCommerce PDF Invoices, Packing Slips, Delivery Notes and Shipping Labels: por WebToffee – 4.0.8
    Real-Time Find and Replace Pro: por Marios Alexandrou – 4.0.3
    Smart Slider 3: por Nextend – 3.5.1.14
    Transients Manager: por WPBeginner – 2.0.3
    Spectra: por Brainstorm Force – 2.6.6
    UpdraftPlus - Backup/Restore: por UpdraftPlus.Com
    DavidAnderson – 1.23.4
    
    User Switching: por John Blackbourn y colaboradores – 1.7.0
    Variation Swatches for WooCommerce: por CartFlows – 1.0.7
    Visual Term Description Editor: por Shea Bunge – 1.8.1
    WC - APG Campo NIF/CIF/NIE: por Art Project Group – 2.0.1
    WC Kalkulator: por Krzysztof Piątkowski – 1.6.1
    Plugin for Google Reviews: por RichPlugins  – 2.5.1
    WooCommerce Locations Pack: por dangoodman – 1.9.1
    WooCommerce Additional Variation Images: por WooCommerce – 2.3.2
    WooCommerce Brands: por WooCommerce – 1.6.29
    WooCommerce EU VAT Number: por WooCommerce – 2.4.2
    WooCommerce Servired/RedSys Spain Gateway: por José Conti – 18.1.1
    WooCommerce Order Status Manager: por SkyVerge – 1.13.4
    WooCommerce Payments: por Automattic – 5.7.1 (la actualización a la versión 6.1.1 está disponible)
    WooCommerce PayPal Payments: por WooCommerce – 2.0.4 (la actualización a la versión 2.1.0 está disponible)
    Woocommerce Products Per Page: por Jeroen Sormani – 1.2.7
    Solicite una cotización para WooCommerce: por Addify – 2.4.2
    WooCommerce: por Automattic – 7.6.0 (la actualización a la versión 7.8.2 está disponible)
    WordPress Importer: por wordpressdotorg – 0.8
    Defender Pro: por WPMU DEV – 3.11.1
    Hide Dashboard Notifications: por WP Republic – 1.2.2
    WPMU DEV Dashboard: por WPMU DEV – 4.11.18
    
    ### Inactive Plugins (5) ###
    
    Advanced Woocommerce Product Gallery Slider: por UnikInfotech – 1.0.0
    Coming Soon Page, Maintenance Mode, Landing Pages & WordPress Website Builder by SeedProd: por SeedProd – 6.15.7
    Easy FancyBox: por RavanH – 1.9.5
    Google Listings and Ads: por WooCommerce – 2.4.9
    WooCommerce Additional Variation Images: por WooCommerce – 2.1.0
    
    ### Dropin Plugins (1) ###
    
    maintenance.php: maintenance.php
    
    ### Settings ###
    
    API Enabled: ✔
    Force SSL: –
    Currency: EUR (€)
    Currency Position: right_space
    Thousand Separator: .
    Decimal Separator: ,
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    variable (variable)
    
    Taxonomies: Product Visibility: exclude-from-catalog (exclude-from-catalog)
    exclude-from-search (exclude-from-search)
    featured (featured)
    outofstock (outofstock)
    rated-1 (rated-1)
    rated-2 (rated-2)
    rated-3 (rated-3)
    rated-4 (rated-4)
    rated-5 (rated-5)
    
    Connected to WooCommerce.com: ✔
    Enforce Approved Product Download Directories: –
    Order datastore: WC_Order_Data_Store_CPT
    
    ### WC Pages ###
    
    Base de la tienda: #1 - /tienda/
    Carrito: #2 - /carrito/
    Finalizar compra: #3 - /finalizar-compra/
    Mi cuenta: #4 - /mi-cuenta/
    Términos y condiciones: #19 - /condiciones-de-uso/
    
    ### Theme ###
    
    Name: GeneratePress Child
    Version: 0.1
    Author URL: https://tomusborne.com
    Child Theme: ✔
    Parent Theme Name: GeneratePress
    Parent Theme Version: 3.3.0
    Parent Theme Author URL: https://tomusborne.com
    WooCommerce Support: ✔
    
    ### Templates ###
    
    Overrides: generatepress_child/woocommerce/content-single-product.php
    generatepress_child/woocommerce/emails/admin-cancelled-order.php
    generatepress_child/woocommerce/emails/admin-failed-order.php
    generatepress_child/woocommerce/emails/admin-new-order.php
    generatepress_child/woocommerce/emails/customer-completed-order.php
    generatepress_child/woocommerce/emails/customer-new-account.php
    generatepress_child/woocommerce/emails/customer-note.php
    La  version 3.7.0 de generatepress_child/woocommerce/emails/customer-on-hold-order.php está obsoleta. La versión del núcleo es la 7.3.0
    generatepress_child/woocommerce/emails/customer-processing-order.php
    generatepress_child/woocommerce/emails/customer-refunded-order.php
    generatepress_child/woocommerce/emails/customer-reset-password.php
    
    Outdated Templates: ❌
    					
    					
    						Aprende cómo actualizar
    
    ### WooCommerce PayPal Payments ###
    
    Onboarded: ✔
    Shop country code: ES
    WooCommerce currency supported: ✔
    Advanced Card Processing available in country: ✔
    Pay Later messaging available in country: ✔
    Webhook status: ✔
    Vault enabled: ✔
    Logging enabled: –
    Reference Transactions: –
    Used PayPal Checkout plugin: –
    Tracking enabled: ✔
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    coupons
    customer-effort-score-tracks
    import-products-task
    experimental-fashion-sample-products
    shipping-smart-defaults
    shipping-setting-tour
    homescreen
    marketing
    multichannel-marketing
    mobile-app-banner
    navigation
    onboarding
    onboarding-tasks
    remote-inbox-notifications
    remote-free-extensions
    payment-gateway-suggestions
    shipping-label-banner
    subscriptions
    store-alerts
    transient-notices
    woo-mobile-welcome
    wc-pay-promotion
    wc-pay-welcome-page
    
    Disabled Features: block-editor-feature-enabled
    minified-js
    new-product-management-experience
    product-variation-management
    settings
    
    Daily Cron: ✔ Next scheduled: 2023-07-04 10:56:06 +02:00
    Options: ✔
    Notes: 121
    Onboarding: completed
    
    ### WooCommerce Payments ###
    
    Version: 5.7.1
    Connected to WPCOM: No
    Blog ID: -
    Account ID: -
    
    ### Action Scheduler ###
    
    Completo: 1.779
    Oldest: 2023-06-03 10:14:03 +0200
    Newest: 2023-07-04 08:03:55 +0200
    
    Fallida: 12
    Oldest: 2023-04-20 14:47:18 +0200
    Newest: 2023-06-20 15:13:24 +0200
    
    Pendiente: 4
    Oldest: 2023-07-04 08:18:55 +0200
    Newest: 2023-07-04 21:36:44 +0200
    
    
    ### Status report information ###
    
    Generated at: 2023-07-04 08:05:46 +02:00
    Thread Starter Kim Soler

    (@kimso)

    Hi @pabloroca93 I haven’t selected the “Send e-commerce data” option and it seems to work correctly, GA4 is receiving the ecommerce data.

    In GA4 I can see the product names with no issues.

    But Now I’m comparing the data from shop with GA4 and GA3 and I can see that there are some purchases that doesn’t appear in GA4 but they are on the shop and GA3 data, I don’t know the reason.

    Thread Starter Kim Soler

    (@kimso)

    Hi @bluejay77, I was out for some days…

    @gaurav984

    At present, this is not possible with the Sensei plugin, you will need to add custom code to the website for this functionality.

    @gaurav984 ok, I will search for this custom code

    Can you tell me why exactly you are looking for this feature?

    Yes, it’s why I think it’s most usable, if a user can’t access to a course, it shouldn’t access to the lesson. They can view the course lessons, but can’t enter to the “lessons view”.

    If seen this way on others LMS plugins, and I think it’s a good option.

    Hi @mcostadada,

    I’m using this code, and seem to work as it shows the first upcoming event, but it doesn’t show the other events:

    //Remove the custom where clause before the calendar query is executed
    function hubbubart_calendar_remove_posts_where() {
        remove_filter( 'posts_where', 'wpfc_temp_filter_where' );
    }
    add_action('wpfc_before_wp_query', 'hubbubart_calendar_remove_posts_where', 10);
    
    function change_calendar_item_date($item, $post) {
    
        $ini = date("d/m/Y H:i:s", strtotime(get_field('start_date', $post->ID)));
        $fi = date("d/m/Y H:i:s", strtotime(get_field('end_date', $post->ID)));
    
        $item['start'] = $ini;
        $item['end'] = $fi;
    
        return $item;
    }
    
    add_filter('wpfc_ajax_post', 'change_calendar_item_date', 10, 2);

    Any slution to this issue?

    Thread Starter Kim Soler

    (@kimso)

    So this hook doesn’t work anymore?

    What can I do if I need to use the GTM4WP by their features?

    Thread Starter Kim Soler

    (@kimso)

    Hi,

    I missed the answer.

    As I can see in your screencast, you link to the tab block. In my case, I’m linking to one of the tabs to open it and show its content.

    Thread Starter Kim Soler

    (@kimso)

    It was an issue with the auto install of CMS in the server, it configure the sit with http but forces https, if change the WordPress URL to https solves the issue.

    Thread Starter Kim Soler

    (@kimso)

    Hi @judith0,

    Here you have a video of the behaviour.

    When I click on a menu element that is an anchor link to a tab element, it scrolls down to the wp-block-uagb-tabs-child div, but it will be nice to be able to set an offset to show the section title.

    I hope now you understand my question.

    Regards

Viewing 15 replies - 1 through 15 (of 132 total)