Forum Replies Created

Viewing 15 replies - 61 through 75 (of 151 total)
  • Thread Starter marseem

    (@waseemsannib)

    Thank you Juan.

    What do you mean about not activating style? Which style you mean? Is there any specific plugin must be inactive?

    Thread Starter marseem

    (@waseemsannib)

    it is 4 items selected in the setting to be displayed but they come more.

    Second the images not aligned from right side and left of the main image.

    And even when they displace you can see gaps from the right side not aligned with main image. You will notice this once you are able to show 4 items in gallery.

    Thank you Juan

    Thread Starter marseem

    (@waseemsannib)

    https://ibb.co/6wc5dcz
    I selected 4 items to be displayed but it comes many images.

    Thread Starter marseem

    (@waseemsannib)

    Hi Juan,
    What you have sent it is the original theme. It is not my website.

    see the screenshot:
    https://ibb.co/Twkx84H

    Thread Starter marseem

    (@waseemsannib)

    Thank you Juan,
    The zoom is working perfectly, just if you visit the page you can see the four gallery images come not aligned with the product image. You can see gaps on the right and left sides. the images are not aligned with the main image of the product. You can see 4 images and a half as well, not completed 4 images that aligned with the edges from the right and left of the main image. how can I fix this issue?
    https://marseem.nl/product/angels-wings/

    Thread Starter marseem

    (@waseemsannib)

    Thank you Juan,
    I have added the second code again, so far the buttons come beside each other, and the website hasn’t got any errors. I hope it will say like this.

    I just need to know why the buttons are stuck on add to cart button on mobile screen?

    Best regards

    Thread Starter marseem

    (@waseemsannib)

    Hello again,
    It seems the code worked for a few hours and now I have deleted it because I could access my website again. So I think this solution it didn’t solve the problem.
    Thank you

    Thread Starter marseem

    (@waseemsannib)

    Regarding paypal button I have changed the zoom option to be inside the box. So it is fine now.

    Just need to know why the gallery images come cropped? second why the plugin doesn’t work on some products such as:
    https://marseem.nl/product/grey-dresser/
    the plugin works perfectly on laptop screen while on iMac 27” not. But other products even on iMac 27” works without a problem.
    don’t know what is going on.

    On iMac screen try to check first product pages you will see the zoom doesnt work while on other well.
    hope to find a solution for this issue
    Thanks in advance

    Thread Starter marseem

    (@waseemsannib)

    Thank you, I have resolved the problem after adding your code. I don’t know why it works now. Before I added it normally as you asked me but I got errors every time now it worked perfectly.
    Best regards

    Thread Starter marseem

    (@waseemsannib)

    Also, the gallery images under the product image come cropped, not full square like they should be.

    Thread Starter marseem

    (@waseemsannib)

    I cant find the value of (&#039) in the function file after adding your code. Can you please tell me where I can find this value in the file?
    Thx

    Thread Starter marseem

    (@waseemsannib)

    There is no (') on your code.

    Thread Starter marseem

    (@waseemsannib)

    If you want to see the original function.php file, here is it:

    <?php
    /**
     * Hermes Themes functions and definitions
     *
     * @package LionThemes
     * @subpackage Hermes_theme
     * @since Hermes Themes 2.0
     */
    //Plugin-Activation
    require_once( get_template_directory().'/class-tgm-plugin-activation.php' );
    
     //Init the Redux Framework
    if ( class_exists( 'ReduxFramework' ) && !isset( $redux_demo )){
    	if(file_exists( trailingslashit(get_stylesheet_directory()) . 'theme-config.php')){
    		require_once( trailingslashit(get_stylesheet_directory()) . 'theme-config.php' );
    	}else{
    		require_once( trailingslashit(get_template_directory()) . 'theme-config.php' );
    	}
    }
    
    // require system parts
    if ( file_exists( get_template_directory().'/includes/theme-helper.php' ) ) {
    	require_once( get_template_directory().'/includes/theme-helper.php' );
    }
    if ( file_exists( get_template_directory().'/includes/widget-areas.php' ) ) {
    	require_once( get_template_directory().'/includes/widget-areas.php' );
    }
    if ( file_exists( get_template_directory().'/includes/head-media.php' ) ) {
    	require_once( get_template_directory().'/includes/head-media.php' );
    }
    if ( file_exists( get_template_directory().'/includes/bootstrap-extras.php' ) ) {
    	require_once( get_template_directory().'/includes/bootstrap-extras.php' );
    }
    if ( file_exists( get_template_directory().'/includes/bootstrap-tags.php' ) ) {
    	require_once( get_template_directory().'/includes/bootstrap-tags.php' );
    }
    if ( file_exists( get_template_directory().'/includes/woo-hook.php' ) ) {
    	require_once( get_template_directory().'/includes/woo-hook.php' );
    }
    
    // theme setup
    function hermes_setup(){
    		// Load languages
    		load_theme_textdomain( 'hermes2', trailingslashit(get_template_directory()) . 'languages' );
    
    		// This theme styles the visual editor with editor-style.css to match the theme style.
    		add_editor_style();
    
    		// Adds RSS feed links to <head> for posts and comments.
    		add_theme_support( 'automatic-feed-links' );
    
    		// This theme supports a variety of post formats.
    		add_theme_support( 'post-formats', array( 'image', 'gallery', 'video', 'audio' ) );
    		
    		/*
    		 * Let WordPress manage the document title.
    		 * By adding theme support, we declare that this theme does not use a
    		 * hard-coded <title> tag in the document head, and expect WordPress to
    		 * provide it for us.
    		 */
    		if ( ! isset( $content_width ) ) $content_width = 625;
    		
    		add_theme_support( 'title-tag' );
    		
    		// This theme uses a custom image size for featured images, displayed on "standard" posts.
    		add_theme_support( 'post-thumbnails' );
    
    		set_post_thumbnail_size( 1480, 987 ); // Unlimited height, soft crop
    		add_image_size( 'hermes-category-thumb', 1480, 987, true ); // (cropped)
    		add_image_size( 'hermes-category-full', 1480, 987, true ); // (cropped)
    		add_image_size( 'hermes-post-thumb', 1480, 987, true ); // (cropped)
    		add_image_size( 'hermes-post-thumbwide', 800, 533, true ); // (cropped)
    		
    		register_nav_menu( 'primary', esc_html__( 'Primary Menu', 'hermes2' ) );
    		add_theme_support( 'woocommerce' );
    		if(class_exists('WooCommerce')){
    			add_theme_support( 'wc-product-gallery-zoom' );
    			add_theme_support( 'wc-product-gallery-lightbox' );
    			add_theme_support( 'wc-product-gallery-slider' );
    		}
    }
    add_action( 'after_setup_theme', 'hermes_setup');
    
    /*
    * Theme support
     */
    add_theme_support( 'custom-background', array() );
    add_theme_support( 'custom-header', array() );
    /**
    * TGM-Plugin-Activation
    */
    add_action( 'tgmpa_register', 'hermes_register_required_plugins'); 
    function hermes_register_required_plugins(){
    	$plugins = array(
    				array(
    					'name'               => esc_html__('LionThemes Helper', 'hermes2'),
    					'slug'               => 'lionthemes-helper',
    					'source'             => trailingslashit(get_template_directory()) . 'plugins/lionthemes-helper.zip',
    					'required'           => true,
    				),
    				array(
    					'name'               => esc_html__('Revolution Slider', 'hermes2'),
    					'slug'               => 'revslider',
    					'source'             => 'https://lion-themes.net/plugins/revslider.zip',
    					'required'           => true,
    				),
    				array(
    					'name'               => esc_html__('Visual Composer', 'hermes2'),
    					'slug'               => 'js_composer',
    					'source'             => 'https://lion-themes.net/plugins/js_composer.zip',
    					'required'           => true,
    				),
    				// Plugins from the Online WordPress Plugin
    				array(
    					'name'               => esc_html__('Redux Framework', 'hermes2'),
    					'slug'               => 'redux-framework',
    					'required'           => true,
    				),
    				array(
    					'name'      => esc_html__('Classic Editor', 'hermes2'),
    					'slug'      => 'classic-editor',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Contact Form 7', 'hermes2'),
    					'slug'      => 'contact-form-7',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Mailchimp for WordPress', 'hermes2'),
    					'slug'      => 'mailchimp-for-wp',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Projects', 'hermes2'),
    					'slug'      => 'projects-by-woothemes',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Shortcodes Ultimate', 'hermes2'),
    					'slug'      => 'shortcodes-ultimate',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Testimonials', 'hermes2'),
    					'slug'      => 'testimonials-by-woothemes',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('TinyMCE Advanced', 'hermes2'),
    					'slug'      => 'tinymce-advanced',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('Widget Importer & Exporter', 'hermes2'),
    					'slug'      => 'widget-importer-exporter',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('WooCommerce', 'hermes2'),
    					'slug'      => 'woocommerce',
    					'required'  => true,
    				),
    				array(
    					'name'      => esc_html__('YITH WooCommerce Compare', 'hermes2'),
    					'slug'      => 'yith-woocommerce-compare',
    					'required'  => false,
    				),
    				array(
    					'name'      => esc_html__('YITH WooCommerce Wishlist', 'hermes2'),
    					'slug'      => 'yith-woocommerce-wishlist',
    					'required'  => false,
    				)
    			);
    			
    	/**
    	 * Array of configuration settings. Amend each line as needed.
    	 * If you want the default strings to be available under your own theme domain,
    	 * leave the strings uncommented.
    	 * Some of the strings are added into a sprintf, so see the comments at the
    	 * end of each line for what each argument will be.
    	 */
    	$config = array(
    		'default_path' => '',                      // Default absolute path to pre-packaged plugins.
    		'menu'         => 'tgmpa-install-plugins', // Menu slug.
    		'has_notices'  => true,                    // Show admin notices or not.
    		'dismissable'  => true,                    // If false, a user cannot dismiss the nag message.
    		'dismiss_msg'  => '',                      // If 'dismissable' is false, this message will be output at top of nag.
    		'is_automatic' => false,                   // Automatically activate plugins after installation or not.
    		'message'      => '',                      // Message to output right before the plugins table.
    		'strings'      => array(
    			'page_title'                      => esc_html__( 'Install Required Plugins', 'hermes2' ),
    			'menu_title'                      => esc_html__( 'Install Plugins', 'hermes2' ),
    			'installing'                      => esc_html__( 'Installing Plugin: %s', 'hermes2' ), // %s = plugin name.
    			'oops'                            => esc_html__( 'Something went wrong with the plugin API.', 'hermes2' ),
    			'notice_can_install_required'     => _n_noop( 'This theme requires the following plugin: %1$s.', 'This theme requires the following plugins: %1$s.', 'hermes2' ),
    			'notice_can_install_recommended'  => _n_noop( 'This theme recommends the following plugin: %1$s.', 'This theme recommends the following plugins: %1$s.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_cannot_install'           => _n_noop( 'Sorry, but you do not have the correct permissions to install the %s plugin. Contact the administrator of this site for help on getting the plugin installed.', 'Sorry, but you do not have the correct permissions to install the %s plugins. Contact the administrator of this site for help on getting the plugins installed.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_can_activate_required'    => _n_noop( 'The following required plugin is currently inactive: %1$s.', 'The following required plugins are currently inactive: %1$s.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_can_activate_recommended' => _n_noop( 'The following recommended plugin is currently inactive: %1$s.', 'The following recommended plugins are currently inactive: %1$s.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_cannot_activate'          => _n_noop( 'Sorry, but you do not have the correct permissions to activate the %s plugin. Contact the administrator of this site for help on getting the plugin activated.', 'Sorry, but you do not have the correct permissions to activate the %s plugins. Contact the administrator of this site for help on getting the plugins activated.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_ask_to_update'            => _n_noop( 'The following plugin needs to be updated to its latest version to ensure maximum compatibility with this theme: %1$s.', 'The following plugins need to be updated to their latest version to ensure maximum compatibility with this theme: %1$s.', 'hermes2' ), // %1$s = plugin name(s).
    			'notice_cannot_update'            => _n_noop( 'Sorry, but you do not have the correct permissions to update the %s plugin. Contact the administrator of this site for help on getting the plugin updated.', 'Sorry, but you do not have the correct permissions to update the %s plugins. Contact the administrator of this site for help on getting the plugins updated.', 'hermes2' ), // %1$s = plugin name(s).
    			'install_link'                    => _n_noop( 'Begin installing plugin', 'Begin installing plugins', 'hermes2' ),
    			'activate_link'                   => _n_noop( 'Begin activating plugin', 'Begin activating plugins', 'hermes2' ),
    			'return'                          => esc_html__( 'Return to Required Plugins Installer', 'hermes2' ),
    			'plugin_activated'                => esc_html__( 'Plugin activated successfully.', 'hermes2' ),
    			'complete'                        => esc_html__( 'All plugins installed and activated successfully. %s', 'hermes2' ), // %s = dashboard link.
    			'nag_type'                        => 'updated' // Determines admin notice type - can only be 'updated', 'update-nag' or 'error'.
    		)
    	);
    	tgmpa( $plugins, $config );
    }
    add_action( 'woocommerce_before_shop_loop_item_title', function() {
       global $product;
       if ( !$product->is_in_stock() ) {
           echo '<span class="now_sold">Now Sold</span>';
       }
    });
    Thread Starter marseem

    (@waseemsannib)

    Yes,
    I’m still having an error once I ADD THE CODE.
    https://ibb.co/ZSFLz58
    https://ibb.co/xLcZftJ
    https://ibb.co/G2nx6FG

    Here is the status:

    
    ### WordPress Environment ###
    
    WordPress address (URL): https://marseem.nl
    Site address (URL): https://marseem.nl
    WC Version: 6.7.0
    REST API Version: ? 6.7.0
    WC Blocks Version: ? 7.8.3
    Action Scheduler Version: ? 3.4.0
    Log Directory Writable: ? To allow logging
    make /mnt/web120/b1/67/512062467/htdocs/STRATO-apps/wordpress_01/app/wp-content/uploads/wc-logs/ writable or define a custom WC_LOG_DIR.
    
    WP Version: ? 6.0.2 - There is a newer version of WordPress available (6.0.3)
    WP Multisite: –
    WP Memory Limit: 512 MB
    WP Debug Mode: –
    WP Cron: ?
    Language: en_US
    External object cache: –
    
    ### Server Environment ###
    
    Server Info: Apache/2.4.54 (Unix)
    PHP Version: 7.4.32
    PHP Post Max Size: 128 MB
    PHP Time Limit: 240
    PHP Max Input Vars: 4000
    cURL Version: 7.85.0
    OpenSSL/1.1.1q
    
    SUHOSIN Installed: –
    MySQL Version: 5.7.38-log
    Max Upload Size: 128 MB
    Default Timezone is UTC: ?
    fsockopen/cURL: ?
    SoapClient: ?
    DOMDocument: ?
    GZip: ?
    Multibyte String: ?
    Remote Post: ?
    Remote Get: ?
    
    ### Database ###
    
    WC Database Version: 6.7.0
    WC Database Prefix: SERVMASK_PREFIX_
    Total Database Size: 18.83MB
    Database Data Size: 14.60MB
    Database Index Size: 4.23MB
    SERVMASK_PREFIX_woocommerce_sessions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_api_keys: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_attribute_taxonomies: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_downloadable_product_permissions: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_order_items: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_order_itemmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_tax_rates: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_tax_rate_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_shipping_zones: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_shipping_zone_locations: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_shipping_zone_methods: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_payment_tokens: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_payment_tokenmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_woocommerce_log: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_actionscheduler_actions: Data: 0.17MB + Index: 0.20MB + Engine InnoDB
    SERVMASK_PREFIX_actionscheduler_claims: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_actionscheduler_groups: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_actionscheduler_logs: Data: 0.13MB + Index: 0.14MB + Engine InnoDB
    SERVMASK_PREFIX_berocket_termmeta: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_commentmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_comments: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    SERVMASK_PREFIX_e_events: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_links: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_lionthemes_user_like_ip: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_options: Data: 4.23MB + Index: 0.13MB + Engine InnoDB
    SERVMASK_PREFIX_pm_activities: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_pm_assignees: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_pm_boardables: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_pm_boards: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_pm_capabilities: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_categories: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_category_project: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_pm_comments: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_pm_files: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_pm_imports: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_meta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_pm_projects: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_roles: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_role_project: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_role_project_capabilities: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_pm_role_project_users: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_pm_role_user: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_pm_settings: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_pm_tasks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_pm_task_types: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_pm_task_type_task: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_postmeta: Data: 3.52MB + Index: 0.53MB + Engine InnoDB
    SERVMASK_PREFIX_posts: Data: 3.52MB + Index: 0.38MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_css: Data: 0.13MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_css_bkp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_layer_animations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_layer_animations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_navigations: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_navigations_bkp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_sliders: Data: 0.03MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_sliders_bkp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_slides: Data: 0.13MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_slides_bkp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_static_slides: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_revslider_static_slides_bkp: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_smush_dir_images: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_sm_advanced_search_temp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_exclusions: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_historical: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_pages: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_search: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_useronline: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_visit: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_visitor: Data: 0.06MB + Index: 0.11MB + Engine InnoDB
    SERVMASK_PREFIX_statistics_visitor_relationships: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_termmeta: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_terms: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_term_relationships: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_term_taxonomy: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_usermeta: Data: 0.08MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_users: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_wc_admin_notes: Data: 0.06MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wc_admin_note_actions: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wc_category_lookup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wc_customer_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_wc_download_log: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_wc_order_coupon_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_wc_order_product_lookup: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_wc_order_stats: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_wc_order_tax_lookup: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_wc_product_attributes_lookup: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wc_product_download_directories: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wc_product_meta_lookup: Data: 0.02MB + Index: 0.09MB + Engine InnoDB
    SERVMASK_PREFIX_wc_rate_limits: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wc_reserved_stock: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wc_tax_rate_classes: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wc_webhooks: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wdr_order_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wdr_order_item_discounts: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wdr_rules: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wpfm_backup: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wpi_object_log: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_wpmelon_advbedit_temp: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wpr_rucss_resources: Data: 0.02MB + Index: 0.06MB + Engine InnoDB
    SERVMASK_PREFIX_wpr_rucss_used_css: Data: 0.02MB + Index: 0.08MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_campaign: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_campaign_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_custom_field: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_email: Data: 0.08MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_email_user_stat: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_email_user_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_form: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_queue: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_subscriber_ips: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_url: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_url_mail: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_user: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_user_field: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_user_history: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_wysija_user_list: Data: 0.02MB + Index: 0.00MB + Engine InnoDB
    SERVMASK_PREFIX_yith_wcwl: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_yith_wcwl_lists: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_yoast_indexable: Data: 0.23MB + Index: 0.22MB + Engine InnoDB
    SERVMASK_PREFIX_yoast_indexable_hierarchy: Data: 0.02MB + Index: 0.05MB + Engine InnoDB
    SERVMASK_PREFIX_yoast_migrations: Data: 0.02MB + Index: 0.02MB + Engine InnoDB
    SERVMASK_PREFIX_yoast_primary_term: Data: 0.02MB + Index: 0.03MB + Engine InnoDB
    SERVMASK_PREFIX_yoast_seo_links: Data: 0.05MB + Index: 0.03MB + Engine InnoDB
    
    ### Post Type Counts ###
    
    acoplw_badges: 1
    attachment: 359
    awl-labels: 1
    br_labels: 1
    custom_css: 1
    customize_changeset: 144
    elementor_library: 1
    mc4wp-form: 1
    mskmbwp_manual: 1
    mskmbwp_out_of_stock: 1
    nav_menu_item: 36
    page: 18
    phoe_badge: 1
    portfolio: 1
    post: 18
    product: 50
    product_variation: 4
    project: 25
    revision: 699
    shop_coupon: 1
    shop_order: 1
    wafs: 1
    wc_custom_statuses: 1
    wcs_ruleset: 1
    wobd-badge-designer: 1
    wpcf7_contact_form: 1
    wpi_object: 1
    wpos_portfolio: 1
    wpt_product_table: 1
    yith-wcbm-badge: 1
    
    ### Security ###
    
    Secure connection (HTTPS): ?
    Hide errors from visitors: ?
    
    ### Active Plugins (33) ###
    
    Template Library and Redux Framework: by Extendify – 4.3.15
    AfterShip Tracking - All-In-One WooCommerce Order Tracking (Free plan available): by AfterShip – 1.15.0
    All-in-One WP Migration: by ServMask – 6.77
    Classic Editor: by WordPress Contributors – 1.6.2
    Classic Widgets: by WordPress Contributors – 0.3
    Conditional Shipping for WooCommerce: by Lauri Karisola / WP Trio – 2.3.1
    Contact Form 7: by Takayuki Miyoshi – 5.6
    Disable Site: by Jimmy K.  – 1.3.1
    Estimated Delivery Date for Woocommerce (Basic): by XAdapter – 1.2.0
    WPBakery Page Builder: by Michael M - WPBakery.com – 6.9.0
    LionThemes Helper: by LionThemes – 2.0.0
    MC4WP: Mailchimp for WordPress: by ibericode – 4.8.7
    Max Mega Menu: by megamenu.com – 2.9.7
    Projects: by WooThemes – 1.5.0
    Slider Revolution: by ThemePunch – 6.5.25
    Social Icons Widget & Block by WPZOOM: by WPZOOM – 4.2.8
    SVG Support: by Benbodhi – 2.4.2
    Advanced Editor Tools (previously TinyMCE Advanced): by Automattic – 5.6.0
    WooCommerce Dynamic Pricing & Discounts: by RightPress – 2.2.10
    WooCommerce Weight Based Shipping: by weightbasedshipping.com – 5.3.23
    Payment Plugins for Stripe WooCommerce: by Payment Plugins
    [email protected] – 3.3.28
    
    Woocommerce Advanced Bulk Edit: by George Iron – 4.2.5
    WooCommerce Payments: by Automattic – 4.5.1
    WooCommerce PayPal Payments: by WooCommerce – 1.9.1
    WooCommerce Product Gift Wrap: by Mike Jolley – 1.1.0
    WooCommerce Order Status & Actions Manager: by Actuality Extensions – 2.1.4
    WooCommerce: by Automattic – 6.7.0
    Yoast SEO: by Team Yoast – 19.6.1
    Disable plugins / themes updates: by vinvin27 – 1.1.1.2
    Smush Pro: by WPMU DEV – 3.11.1
    WP Statistics: by VeronaLabs – 13.2.5
    YITH WooCommerce Compare: by YITH – 2.16.0
    YITH WooCommerce Wishlist: by YITH – 3.11.0
    
    ### Inactive Plugins (1) ###
    
    YellowPencil Pro: by WaspThemes – 7.5.4
    
    ### Dropin Plugins (1) ###
    
    advanced-cache.php: advanced-cache.php
    
    ### Settings ###
    
    API Enabled: –
    Force SSL: –
    Currency: EUR (€)
    Currency Position: left
    Thousand Separator: ,
    Decimal Separator: .
    Number of Decimals: 2
    Taxonomies: Product Types: external (external)
    grouped (grouped)
    simple (simple)
    subscription (subscription)
    variable (variable)
    variable subscription (variable-subscription)
    
    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: ?
    
    ### WC Pages ###
    
    Shop base: #1881 - /shop/
    Cart: #1882 - /cart/
    Checkout: #1883 - /checkout-2/
    My account: ? Page does not contain the [woocommerce_my_account] shortcode.
    Terms and conditions: ? Page not set
    
    ### Theme ###
    
    Name: Hermes2
    Version: 2.0.0
    Author URL: https://lion-themes.net/
    Child Theme: ? – If you are modifying WooCommerce on a parent theme that you did not build personally we recommend using a child theme. See: How to create a child theme
    WooCommerce Support: ? Not declared
    
    ### Templates ###
    
    Overrides: hermes2/woocommerce/archive-product.php
    hermes2/woocommerce/cart/cart.php version 3.6.5 is out of date. The core version is 3.8.0
    hermes2/woocommerce/cart/cross-sells.php version 3.6.5 is out of date. The core version is 4.4.0
    hermes2/woocommerce/cart/mini-cart.php version 3.5.0 is out of date. The core version is 5.2.0
    hermes2/woocommerce/checkout/form-checkout.php
    hermes2/woocommerce/checkout/form-login.php version 3.6.5 is out of date. The core version is 3.8.0
    hermes2/woocommerce/checkout/review-order.php version 3.6.5 is out of date. The core version is 5.2.0
    hermes2/woocommerce/checkout/thankyou.php version 3.6.5 is out of date. The core version is 3.7.0
    hermes2/woocommerce/content-product.php
    hermes2/woocommerce/content-single-product.php
    hermes2/woocommerce/content-widget-product.php
    hermes2/woocommerce/global/breadcrumb.php
    hermes2/woocommerce/global/quantity-input.php version 3.6.0 is out of date. The core version is 4.0.0
    hermes2/woocommerce/loop/loop-end.php
    hermes2/woocommerce/loop/loop-start.php
    hermes2/woocommerce/loop/orderby.php
    hermes2/woocommerce/loop/result-count.php version 3.6.5 is out of date. The core version is 3.7.0
    hermes2/woocommerce/myaccount/my-account.php
    hermes2/woocommerce/myaccount/navigation.php
    hermes2/woocommerce/product-searchform.php
    hermes2/woocommerce/single-product/add-to-cart/grouped.php version 3.4.0 is out of date. The core version is 4.8.0
    hermes2/woocommerce/single-product/price.php
    hermes2/woocommerce/single-product/rating.php
    hermes2/woocommerce/single-product/related.php version 3.6.5 is out of date. The core version is 3.9.0
    hermes2/woocommerce/single-product/review.php
    hermes2/woocommerce/single-product/sale-flash.php
    hermes2/woocommerce/single-product/short-description.php
    hermes2/woocommerce/single-product/up-sells.php
    hermes2/woocommerce/single-product-reviews.php version 3.6.5 is out of date. The core version is 4.3.0
    hermes2/woocommerce/single-product.php
    hermes2/woocommerce/content-product_cat.php version 3.6.5 is out of date. The core version is 4.7.0
    
    Outdated Templates: ?
    					
    					
    						Learn how to update
    
    ### Subscriptions ###
    
    WCS_DEBUG: ? No
    Subscriptions Mode: ? Live
    Subscriptions Live URL: https://marseem.nl
    Subscription Statuses: –
    WooCommerce Account Connected: ? Yes
    Active Product Key: ? No
    
    ### Store Setup ###
    
    Country / State: Netherlands
    
    ### Payment Gateway Support ###
    
    PayPal: refunds
    Stripe Credit Cards: tokenization
    products
    subscriptions
    add_payment_method
    subscription_cancellation
    multiple_subscriptions
    subscription_amount_changes
    subscription_date_changes
    default_credit_card_form
    refunds
    pre-orders
    subscription_payment_method_change_admin
    subscription_reactivation
    subscription_suspension
    subscription_payment_method_change_customer
    
    Stripe Apple Pay: tokenization
    products
    subscriptions
    add_payment_method
    subscription_cancellation
    multiple_subscriptions
    subscription_amount_changes
    subscription_date_changes
    default_credit_card_form
    refunds
    pre-orders
    subscription_payment_method_change_admin
    subscription_reactivation
    subscription_suspension
    subscription_payment_method_change_customer
    wc_stripe_cart_checkout
    wc_stripe_product_checkout
    wc_stripe_banner_checkout
    wc_stripe_mini_cart_checkout
    
    iDEAL: tokenization
    products
    refunds
    
    ### WooCommerce PayPal Payments ###
    
    Onboarded: ?
    Shop country code: NL
    WooCommerce currency supported: ?
    PayPal card processing available in country: –
    Pay Later messaging available in country: –
    Webhook status: –
    Vault enabled: ?
    Logging enabled: –
    Reference Transactions: –
    Used PayPal Checkout plugin: –
    
    ### Admin ###
    
    Enabled Features: activity-panels
    analytics
    coupons
    customer-effort-score-tracks
    experimental-products-task
    experimental-import-products-task
    experimental-fashion-sample-products
    experimental-product-tour
    homescreen
    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
    wc-pay-promotion
    wc-pay-welcome-page
    wc-pay-subscriptions-page
    
    Disabled Features: minified-js
    settings
    
    Daily Cron: ? Next scheduled: 2022-10-19 21:37:03 +02:00
    Options: ?
    Notes: 59
    Onboarding: completed
    
    ### WooCommerce Payments ###
    
    Version: 4.5.1
    Connected to WPCOM: No
    Blog ID: -
    Account ID: -
    
    ### Action Scheduler ###
    
    Complete: 482
    Oldest: 2022-09-19 01:44:12 +0200
    Newest: 2022-10-19 10:44:52 +0200
    
    Pending: 2
    Oldest: 2022-10-19 22:27:05 +0200
    Newest: 2022-10-19 22:27:05 +0200
    
    ### Status report information ###
    
    Generated at: 2022-10-19 18:08:33 +02:00
    
    Thread Starter marseem

    (@waseemsannib)

    Thank you for your support. After adding this code the website stopped working. I have just let it work again. So after adding the code I get error and I cant’ access the website.
    any other solution?

    https://ibb.co/PtPK9Zg
    You can see how it looks like on the original theme and as well as on mobile devises:
    https://demo.lion-themes.net/hermes2/shop/big-forest-beard-care-kit-shampoo-oil-balm-brush/

    • This reply was modified 2 years, 4 months ago by marseem.
    • This reply was modified 2 years, 4 months ago by marseem.
    • This reply was modified 2 years, 4 months ago by marseem.
    • This reply was modified 2 years, 4 months ago by marseem.
Viewing 15 replies - 61 through 75 (of 151 total)