Forum Replies Created

Viewing 30 posts - 48,841 through 48,870 (of 67,539 total)
  • Author
    Posts
  • Hi!

    Did you remove all created menus? Please provide a screenshot of the “menu crash”.. Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Sticky Cookie Law bar #455415

    Hi!

    Alright. Please check it now. Test it with or without the cookie: http://www.c-testing.nl/ccom/

    Wait for the page to finish loading.

    Best regards,
    Ismael

    in reply to: Slowly loaded website optimization done…. #455409

    Hi!

    Please test the site here: http://gtmetrix.com/reports/www.cel-remonta.ru/FNg1Mrqg

    Below, you can review the recommendations in order to optimize the site:

    1.) Specify image dimensions – Go to the Media Library then set the ALT and TITLE of the images.
    2.) Defer parsing of JavaScript – Most of the scripts are required to load ahead of the content to render the page properly so we won’t be able to fix it without breaking the site.
    3.) Serve scaled images – browse through the images in the list, you can resize the image dimension or decrease image quality to reduce loading speed.
    4.) Minimize redirects – Not sure what could be causing this.. Do you have any redirect settings?
    5.) Remove query strings from static resources – – – – – Looks like the bwp minify plugin is causing this.
    6.) Leverage browser caching – Minimum expiration period is 1 month. Please refer to this link on how to leverage browser cache for different file types: https://www.feedthebot.com/pagespeed/leverage-browser-caching.html

    The suggestions above can improve page load marginally but in the end, it ultimately boils down to the performance of your current hosting plan. Make sure that there is no impose limit on the amount of traffic, resource limits, bandwidth your website can use per day and per month. Shared hosts are cheaper but is not really recommended because it is relatively slower compare to dedicated servers.

    Best regards,
    Ismael

    in reply to: Setting Partner/Logo Element question #455406

    Hi!

    Did you place the element inside a color section? Set the Section Padding to “No Padding”.

    Best regards,
    Ismael

    Hey!

    Add this to the Quick CSS field:

    a.fc-event {
      min-width: 109px !important;
    }

    Cheers!
    Ismael

    in reply to: Color Problems with alternate content area #455403

    Hey!

    The settings works fine on our installation. Please post the login credentials here, we would like to check it.

    Cheers!
    Ismael

    in reply to: backgrounds and some content missing Windows mobile #455401

    Hi!

    Did you add a custom css transition for the menu items? Again, the difference between the two page is the transparency header. The pages with the transparent header don’t display the default styling. Maybe because of the custom css modifications that you add. Add this in the Quick CSS field to get the same hover color:

    #top #wrap_all .av_header_transparency .main_menu ul:first-child > li > a:hover {
      color: #c05527;
    }

    Why did you set this page to transparent header? http://sundaradesign.com.au/dev/wp-admin/post.php?post=452&action=edit

    And not this one? http://sundaradesign.com.au/dev/wp-admin/post.php?post=1000&action=edit

    I don’t see any difference between the two pages.

    Cheers!
    Ismael

    in reply to: mobile menu #455393

    Hi!

    Why did you override the theme? Like I said on my previous post, it doesn’t affect anything on the theme. Please review the post here: https://kriesi.at/support/topic/mobile-menu-33/#post-449861

    You can find this line in the mobile menu modification:

    register_nav_menu($key, THEMENAME.' '.$name);
    

    Replace it with:

    $theme_name = get_current_theme();register_nav_menu($key, $theme_name.' '.$name);
    

    That should fix the theme name issue.

    Cheers!
    Ismael

    Hi!

    Try to use the theme’s default layer slider shortcode:

    echo do_shortcode("[ av_layerslider id='3']")
    

    Adjust the id if necessary.

    Cheers!
    Ismael

    in reply to: Autoplay Video #455390

    Hi!

    You can set the autoPlay parameter to true to auto play the video but take note that swf or flash files are not supported on iOS. It will not play on iPhones, iPad or any devices with iOS. Both video fromat have the same background color ( #fffdff ):

    Ignore the red background.

    Cheers!
    Ismael

    Hi boscotwcheung!

    Thank you for using Enfold.

    Add this in the functions.php file:

    add_filter('avia_load_shortcodes', 'avia_include_shortcode_template', 15, 1);
    function avia_include_shortcode_template($paths)
    {
    	$template_url = get_stylesheet_directory();
        	array_unshift($paths, $template_url.'/shortcodes/');
    
    	return $paths;
    }
    

    Create a folder, name it “shortcodes”. Inside the folder create another php file called “product_snippet_custom”. Add this:

    <?php
    /**
     * Custom product shortcode
     */
    
    if ( !class_exists( 'avia_sc_produc_custom' ) )
    {
    	class avia_sc_produc_custom extends aviaShortcodeTemplate
    	{
    			/**
    			 * Create the config array for the shortcode custom
    			 */
    			function shortcode_insert_button()
    			{
    				$this->config['name']		= __('Product Custom', 'avia_framework' );
    				$this->config['tab']		= __('Plugin Additions', 'avia_framework' );
    				$this->config['icon']		= AviaBuilder::$path['imagesURL']."sc-button.png";
    				$this->config['order']		= 10;
    				$this->config['target']		= 'avia-target-insert';
    				$this->config['shortcode'] 	= 'av_product_custom';
            $this->config['tooltip'] 	= __('Display a custom info', 'avia_framework' );
            $this->config['drag-level'] = 3;
            $this->config['tinyMCE'] 	= array('disable' => "true");
    			}
    
          /**
      		 * Editor Element - this function defines the visual appearance of an element on the AviaBuilder Canvas
      		 * Most common usage is to define some markup in the $params['innerHtml'] which is then inserted into the drag and drop container
      		 * Less often used: $params['data'] to add data attributes, $params['class'] to modify the className
      		 *
      		 *
      		 * @param array $params this array holds the default values for $content and $args.
      		 * @return $params the return array usually holds an innerHtml key that holds item specific markup.
      		 */
      		function editor_element($params)
      		{
      			$params['innerHtml'] = "<img src='".$this->config['icon']."' title='".$this->config['name']."' />";
      			$params['innerHtml'].= "<div class='avia-element-label'>".$this->config['name']."</div>";
      			$params['content'] 	 = NULL; //remove to allow content elements
      			return $params;
      		}
    
          function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
          {
          	$output = "";
          	$meta['el_class'];
    
          	global $woocommerce, $product;
          	if(!is_object($woocommerce) || !is_object($woocommerce->query) || empty($product)) return;
    
          	// $product = wc_get_product();
          	$output .= "<div class='av-woo-product-info ".$meta['el_class']."'>";
          	ob_start();
    
          	// Disabled by Alex
          	// $product->list_attributes();
    
          	// Custom Code by Alex to add more product info data
          	$string_item_code = 'Item-code';
          	if (ICL_LANGUAGE_CODE != 'en'){
          		$string_item_code = '產品編號';
          	}
          	if ($product->sku != ''){
          		echo '<div class="product_sku">'.$string_item_code.': '.$product->sku.'</div>';
          	}
          	if ($product->post->post_title != ''){
          		echo '<div class="product_title">'.$product->post->post_title.'</div>';
          	}
    
          	if ($product->regular_price != ''){
          		echo '<div class="product_price_row">';
          		$product_o_price = $product->regular_price;
          		$product_s_price = $product->sale_price;
          		$product_symbol = get_woocommerce_currency_symbol();
          		if ($product_symbol == '$'){
          			$product_symbol = 'HKD$';
          		}
          		$product_symbol = 'HKD';
          		if ($product_s_price == ''){ // No Discount
          			if ($product_o_price != ''){
          				echo '<span class="product_price">'.$product_symbol.wc_price($product_o_price).'</span>';
          			}
          		} else {
          			echo '<span class="product_price">'.$product_symbol.wc_price($product_s_price).'</span>';
          			echo '<span class="product_o_price"><del>'.$product_symbol.wc_price($product_o_price).'</del></span>';
          			echo '<span class="product_percent">'.(($product_o_price - $product_s_price) / $product_o_price) * 100 .'% off</span>';
          		}
          		echo '</div>';
          	}
          	// end of custom code by Alex
    
          	$output .= ob_get_clean();
          	$output .= "</div>";
    
          	return $output;
          }
    	}
    }
    

    You will find another element named “Product Custom” in the Plugin Additions panel.

    Best regards,
    Ismael

    Hey pako69!

    Thank you for using Enfold.

    Add this to the Quick CSS field to adjust the position of the link:

    @media only screen and (max-width: 767px) {
    #top .scroll-down-link {
      bottom: 140px;
    }}

    Regards,
    Ismael

    Hey Lango2332!

    Thank you for using Enfold.

    If you use the advance layout builder for posts, all default elements such as the featured image, post meta info, comments etc. will be removed. You need to add all the contents manually.

    Cheers!
    Ismael

    in reply to: Edit portfolio template #455378

    Hi brian7454!

    Thank you for using Enfold.

    You can find the template on config-templatebuilder > avia-shortcodes > portfolio.php. Unfortunately, you can’t modify the portfolio grid template in the child theme but you can use the existing filters to modify the content of the portfolio grid. Regarding the plugin, please contact the plugin author for more info.

    Regards,
    Ismael

    in reply to: Safari on iPhone/iPad mini #455035

    Hey!

    The “2014 JobsCentral” displayed the correct product thumbnail when I checked it on my iPod, safari browser. Is this the only product getting mismatched product image?

    Regards,
    Ismael

    in reply to: New install fails #455034

    Hi brentaxe!

    Thank you for using Enfold.

    Please extract the actual enfold zip file before uploading to WordPress. Refer to this link for more info: http://kriesi.at/archives/wordpress-beginners-how-to-start-with-enfold-from-scratch

    Cheers!
    Ismael

    in reply to: Embedded video not responsive? #455033

    Hey bongoman!

    Thank you for using Enfold.

    The youtube resize properly when I checked the page. Did you fix it?

    Regards,
    Ismael

    in reply to: Enfold and Thrive Leads #455032

    Hi!

    Looks like the color section is the one causing the issue or the widget in the sidebar. The combination of the two breaks the layout of the page. What happens when you remove the TLW plugin?

    http://advance.to/5370-2/

    Best regards,
    Ismael

    in reply to: Enfold not saving changes #455022

    Hey tech500!

    Thank you for using Enfold.

    You can’t copy third party scripts in the debug editor. It is actually advisable not to tamper with the codes inside the debug editor field. Place the code inside a code or a text block. The builder works fine when I test it: http://www.silkphotos.com/wp-admin/post.php?post=987&action=edit

    Regards,
    Ismael

    Hey!

    There is no documentation for that, unfortunately, but I can tell you now that there is no hook above the main header aside from the avia_meta_header action hook.

    Best regards,
    Ismael

    in reply to: Setting Partner/Logo Element question #454967

    Hi anubis!

    Thank you for using Enfold.

    Use images with the same size or dimension. The size of the logo images in the demo is 705x350px including the whitespaces.

    http://kriesi.at/themes/enfold/files/2013/10/wordpress.png
    http://kriesi.at/themes/enfold/files/2013/10/envato.png

    Cheers!
    Ismael

    in reply to: post nav order is backward #454966

    Hey understandchristianity!

    Thank you for using Enfold.

    You can add this to the functions.php to reverse the post navigation:

    add_filter( 'avia_post_nav_entries', 'enfold_customization_postnav', 10, 2); 
    function enfold_customization_postnav($entries, $settings) {
    	$entries['prev'] = get_next_post($settings['same_category']);
    	$entries['next'] = get_previous_post($settings['same_category']);
    	return $entries;
    }

    Cheers!
    Ismael

    in reply to: Chrome bug #454965

    Hey!

    Videos are disabled on mobile screens by default so it will not affect the mobile performance of the site. Website optimization is outside our role as theme support. What we can do is to give you specific instructions and point you to related articles. Please follow the suggestions provided here:

    http://kriesi.at/archives/4-key-wordpress-image-optimization-tips
    https://codex.wordpress.org/WordPress_Optimization

    Again, you can resize the parallax backgrounds as a start:

    http://nomadigo.com/wp-content/uploads/2014/04/photodune-4821077-business-solutions-m.jpg
    http://nomadigo.com/wp-content/uploads/2014/04/photodune-5564847-new-technologies-m-B.jpg

    Regards,
    Ismael

    in reply to: Images size for 3 columns? #454963

    Hi!

    Those speed tests force you to use the exact thumbnail size proportionate to their intended size in the browser or container which, in most cases, will compromise the image quality, ratio and proportion. This is not viable when you’re working on responsive containers such as the portfolio grid. However, you can still resize the thumbnails to ensure that the number of unnecessary pixels is minimal, and that your large assets in particular are delivered as close as possible to their display size. You can do that by editing the theme’s preset thumbnail sizes on functions.php:

    $avia_config['imgSize']['portfolio'] 		 	= array('width'=>495, 'height'=>400 );						// images for portfolio entries (2,3 column)
    $avia_config['imgSize']['portfolio_small'] 		= array('width'=>260, 'height'=>185 );						// images for portfolio 4 columns

    Cheers!
    Ismael

    Hey Mat!

    Thank you for using Enfold.

    We need to access to the website. Please post the login credentials here. Try to add the code inside a css media query:

    @media only screen and (max-width: 767px) { 
    .avia-slideshow-button-2 { margin-left: 0px !important; }
    }

    Best regards,
    Ismael

    in reply to: Cannot edit ANY pages #454952

    Hi!

    Thank you for using Enfold.

    After updating to Enfold 3.2, try to purge the cache if you have a cache plugin or any server cache. Test it on another browser. Version 3.2 works fine on our installation so it’s either a third party plugin or something in your server that is causing the issue.

    Best regards,
    Ismael

    Hey!

    Please give us a link to the actual post with the issue. Try to enclosed the shortcodes inside a container, a div tag. The share section has an offset position, maybe that’s why it covers the shortcodes.

    Best regards,
    Ismael

    Hey!

    Please try to switch to a default theme. Delete the menus then switch again to Enfold. Re-create the menu from scratch. Might have to do with a broken or corrupted menu item.

    Best regards,
    Ismael

    Hey!

    Alright. I’m sorry if I can’t understand you clearly, maybe a screenshot will clear things out. Use imgur or dropbox. Have you tried using the Color Section element to change the background of the content?

    Cheers!
    Ismael

    Hi!

    Use css media queries to keep the container responsive.

    http://www.w3schools.com/cssref/css3_pr_mediaquery.asp
    https://css-tricks.com/snippets/css/media-queries-for-standard-devices/

    Regarding the javascript, I’m not sure how will that work. You can hire a freelance developer to add it for you. Visit codeable: http://kriesi.at/contact/customization

    Best regards,
    Ismael

Viewing 30 posts - 48,841 through 48,870 (of 67,539 total)