Forum Replies Created

Viewing 30 posts - 47,881 through 47,910 (of 67,570 total)
  • Author
    Posts
  • in reply to: Upcoming Events Widget – remove repeat information #479471

    Hey!

    Can you please open a new thread for the issue regarding the events-countdown-widget? The thread is getting a bit too long. I was able to find why the var_dump function isn’t working. My bad. But I still don’t know why the countdown is set to zero. It shows the correct upcoming event on the temp page but the countdown is not working. We will close this thread for now.

    Regards,
    Ismael

    in reply to: Easy Slider responsive height scale images #479465

    Hey!

    What is the purpose of the “bg-ghost-area”? The slider section looks OK when I checked the page.

    Regards,
    Ismael

    in reply to: Issue with layout grid on small mobiles #479461

    Hey!

    Unfortunately, that is the default behavior of the masonry item when set to perfect automated masonry. You can create another masonry item under the default masonry then set the same settings but this time set the Size Settings to Flexible Masonry. Use css media queries to switch the display of the masonry items on different screen sizes. Please post the login details here so that we can check it.

    Regards,
    Ismael

    in reply to: You may also like… OR Related products #479458

    Hi!

    It should hide the related product section. Add this in the Quick CSS field:

    .product_column.product_column_5 + .product_column.product_column_5 {
      display: none !important;
    }

    Best regards,
    Ismael

    in reply to: Mega menu hover positioning #479454

    Hi!

    You have this code in the Quick CSS field:

    #top #wrap_all .av-main-nav ul > li:hover > a, #top #wrap_all .avia_mega_div, #top #wrap_all .avia_mega_div ul, #top #wrap_all .av-main-nav ul ul {
      color: #ffffff;
      background-color: #CC6600;
      border-color: #cc6600;
      font-size: 12px;
      line-height: 1em;
    }

    Remove the line-height property.

     line-height: 1em;
    

    Best regards,
    Ismael

    in reply to: Mobile Menu Hover #479448

    Hi!

    The hover effect is working but you need to touch the menu bar instead of the actual menu text. Try to use this:

    #mobile-advanced li:hover, .html_header_mobile_behavior #mobile-advanced span:hover, .html_header_mobile_behavior #mobile-advanced span:hover a {
      background-color: #018db0 !important;
      color: #ffffff !important;
    }

    Cheers!
    Ismael

    in reply to: center image and text vertical #479445

    Hi!

    Edit the image elements then add a custom css class attribute to it. Do this for all images using the same portrait.

    For future reference we kindly ask you to refrain from bumping the thread. Since we answer questions from oldest to newest, bumping makes it appear new and it will probably take us longer to respond on your inquiry. Replies in the forum can take up to 24 hours during the week, but oftentimes we are able to get to questions much quicker than that. We request that our users wait patiently while we work our way through the forum as we can assure you that all questions will be addressed as soon as possible.

    Thank you for your understanding. For further modifications, please contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: Add variation only for one variation #479444

    Hi!

    There is no option for that by default and I’m not sure if there any woocommerce extension that you can use with that feature. It will help if you can contact the woocommerce support.

    Regards,
    Ismael

    Hi!

    My bad. You have to modify the defaults-template.php file. Remove everything then replace it with this code: http://pastebin.com/rhtUtra6

    Regards,
    Ismael

    Hey!

    I was able to reproduce the issue on Chrome, Windows 8. Please try this this in the Quick CSS field to disable the animation:

    .avia_transform .avia-gallery-thumb img {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1);
    }

    If possible, increase the wp memory limit to at least 128M: http://docs.woothemes.com/document/increasing-the-wordpress-memory-limit/

    Best regards,
    Ismael

    in reply to: Easy slider with video, header, icon #479431

    Hey!

    Try to add this to the Quick CSS field to remove the default main menu on mobile devices with screen size lower than 768px:

    @media only screen and (max-width: 768px) {
    .responsive.html_mobile_menu_tablet .main_menu .avia-menu, .responsive.html_mobile_menu_tablet #header_main .social_bookmarks, .responsive.html_mobile_menu_tablet #header_main_alternate {
      display: none;
    }
    }

    Cheers!
    Ismael

    in reply to: Post Template #479429

    Hey!

    The template for the single post page is the includes > loop-index.php file. To test it, try to remove the code inside this file then check one of the single post items. The post should be blank.

    Cheers!
    Ismael

    in reply to: Fixed background issue #479428

    Hey James!

    Thank you for using Enfold.

    I checked the site and the scroll down arrows are disabled even on desktop view. Please create a test page so that we can check it.

    If you noticed the background not fixed on mobile devices, unfortunately, that is the default behavior of the color section background on mobile devices. The background fixed property is not supported by all browser specially mobile browsers. The parallax effect is disabled because the css translate property that is responsible for the parallax effect is still also partially supported on mobile browsers. These are the known issues on mobile devices regarding these properties:

    1.) iOS has an issue preventing background-position: fixed from being used with background-size: cover.
    2.) Chrome has an issue that occurs when using the will-change property on a selector which also has background-attachment: fixed defined. It causes the image to get cut off and gain whitespace around it.

    Cheers!
    Ismael

    Hey!

    That is the login area to the cpanel. We need to login to the WP dashboard. Please ask your hosting provider.

    Regards,
    Ismael

    in reply to: VIDEO MEDIA ELEMENT BUG #479423

    Hi dwebprojects!

    Thank you for using Enfold.

    We need to see the actual website to see what’s going on with it. Make sure that you have the latest version which 3.2.2. Try to edit the video element then adjust the Video Format. A link to the actual video will help as well.

    Cheers!
    Ismael

    in reply to: Shopping Cart Icon at secondary menu #479422

    Hi!

    Use css media queries to adjust the position on different screen sizes. Example:

    @media only screen and (min-width: 1200px) {
    .html_visible_cart .cart_dropdown {
      right: 500px;
    }
    }

    This will adjust the right position of the cart icon on screen sizes larger than 1200px.

    Cheers!
    Ismael

    in reply to: Layer Slider Image Transparency #479419

    Hey!

    Thank you for the info. You can add the background as a another layer under the boxes. If you can provide a screenshot of the slider layout, it will help. Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Different order on flex_columns in responsive mode #479416

    Hi QBDSwedenAB!

    Thank you for using Enfold.

    Did it work? The box-ordinal-group css property is currently not supported on all browsers specially on IE and it requires that the column display is set to flex. You will have to come up with another solution, probably, by using javascript. Or creating another set of columns with different order. Use css media queries to hide and show these columns on different screen sizes.

    Regards,
    Ismael

    in reply to: Remove Top Header Menu & Info on specific pages #479415

    Hey!

    Give us a link to the actual post. This is how you can get the correct post or page id: http://kb.oboxthemes.com/articles/how-to-get-css-styles-for-elements/

    Cheers!
    Ismael

    in reply to: Auto reply contact form – child theme #479411

    Hi oestergaardn!

    Thank you for using Enfold.

    Yes, they will be overwritten when you update the theme. You can use software suggested on the previous thread to translate the strings or text.

    Best regards,
    Ismael

    in reply to: Responsive Issues #478905

    Hi!

    You can decrease the size of the button to prevent it from covering the slider navigation:

    @media only screen and (max-width: 989px) {
    #top .avia-slideshow-button {
      top: -10px;
      font-size: 11px;
      padding: 5px 10px;
    }}

    Cheers!
    Ismael

    in reply to: Partner/logo images pixelated in Firefox #478903

    Hey!

    Please try this:

    .slide-entry img {
        image-rendering: auto !important;
    }

    Regards,
    Ismael

    in reply to: How to Create "Single Product Page"? #478901

    Hi!

    That is a product page or item. Create a page then add the product specific shortcodes.

    Regards,
    Ismael

    in reply to: Events Countdown Widget Bug #478623

    Hi!

    My bad. I think I know now why it’s not working. There are multiple files in the shortcodes folder with the “av_events_countdown” shortcode name so even though we renamed the original file, it’s still being use instead of the new file. It is now showing the variable values when I use the var_dump function.

    Best regards,
    Ismael

    in reply to: Huge error with Chrome browser #478589

    Hi!

    Is this sorted out? I checked the site on Chrome and it’s loading without errors.

    Regards,
    Ismael

    in reply to: Rich Snippets Error #478584

    Hi!

    You add this in the functions.php file if you want to remove the last item in the breadcrumb:

    add_filter( 'avia_breadcrumbs_trail', 'mmx_remove_element_from_trail', 50, 2 );
    function mmx_remove_element_from_trail( $trail, $args ) {
    	
    	if ( is_singular('product') ) {
    		unset($trail['trail_end']);
    	}
    	
    	return $trail;
    }

    If it doesn’t work, try this:

    add_filter( 'avia_breadcrumbs_trail', 'avia_breadcrumbs_trail_mod', 50, 2 );
    function avia_breadcrumbs_trail_mod( $trail, $args ) {
    	
    	if ( is_singular('product') ) {
    		array_pop($trail);
    	}
    	
    	return $trail;
    }

    Cheers!
    Ismael

    in reply to: Item Cloning Question & Accordion Issue #478583

    Hey!

    The cloned element should inherit all properties from the parent element but when you edit the initial or parent element again, the cloned element should not inherit the parent’s new properties. I haven’t tested css hero personally with enfold so I’m not sure if it is fully compatible with the advance layout builder.

    Regards,
    Ismael

    in reply to: Masonry padding / margin on mobile devices #478582

    Hey!

    You can decrease the logo size with this:

    @media only screen and (max-width: 480px) {
    #header .widget div a img {
      width: 35%;
    }}

    Remove browser cache then reload the page.

    Cheers!
    Ismael

    in reply to: How to Create "Single Product Page"? #478580

    Hi!

    Thank you for using Enfold.

    There are specific plugin shortcodes that you can only use on a specific post type. Unfortunately, you can’t enable them on other post types. An example is the “Product Purchase Button” element. You can only use this element on a product item.

    Cheers!
    Ismael

    in reply to: Source Code von inline CSS befreien #478579

    Hi frankeee!

    Thank you for using Enfold.

    Which inline css are you referring to? The theme generates the style in an external stylesheet located in the wp-content > uploads > dynamic_avia folder.

    Regards,
    Ismael

Viewing 30 posts - 47,881 through 47,910 (of 67,570 total)