Forum Replies Created

Viewing 30 posts - 46,621 through 46,650 (of 66,046 total)
  • Author
    Posts
  • in reply to: redirect question #472153

    Hi dominiquehurley!

    Thank you for using Enfold.

    What stats exactly? Did you use a plugin? A screenshot of this will help.

    Regards,
    Ismael

    Hey!

    I don’t think I suggested any of those before. Granting full access to folder or files is not safe so we will not advice it unless necessary. Did you even try it? Actually, hiring someone who is more familiar with server configurations will help in this case.

    Cheers!
    Ismael

    in reply to: Full width submenu as new menu location #472146

    Hey!

    You can try this:

    add_action('avia_breadcrumbs_trail', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled']
    	[av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style='']
    	[/av_submenu]");
    }

    Regards,
    Ismael

    in reply to: Events Countdown Widget Bug #472144

    Hi!

    The difference between the events in your installation and the ones in mine is the “recurrence” option which is only available in the pro version of the plugin, I think. We will test this again with the recurrence option enabled. Actually. the next event is there but the opacity is set to 0 and the countdown timer is not working for some reason. If you add this in the Quick CSS field, you’ll see the next event:

    .av-countdown-timer {
      opacity: 1;
    }

    Best regards,
    Ismael

    in reply to: Full width submenu as new menu location #471378

    Hi!

    Please try this in the functions.php file:

    add_action('ava_after_main_title', 'ava_after_main_title_mod');
    function ava_after_main_title_mod() {
    	echo do_shortcode("[av_submenu which_menu='custom' menu='41' position='center' color='main_color' sticky='aviaTBsticky' mobile='disabled']
    	[av_submenu_item title='Menu Item 1' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 2' link='' linktarget='no' button_style='']
    	[av_submenu_item title='Menu Item 3' link='manually,http://' linktarget='' button_style='']
    	[/av_submenu]");
    }

    Check one of the page or post.

    Regards,
    Ismael

    in reply to: WPML theme options doesn't work #471376

    Hi!

    I changed the socket background to a different color, it’s the container at the very bottom of the site, and it works fine. Please check it here: http://gorkagorospe.com/en/

    Note that you have to switch to english language before you can edit the englist option, you can find the language switcher in the wp admin bar right beside Theme Options. You have to edit each languages’ theme options separately.

    Regards,
    Ismael

    in reply to: Remove image fade-in and resize of gallery thumbnails #471375

    Hey Aljoscha!

    Thank you for using Enfold.

    The image height of image inside the big preview container is based on the width / height ratio of the avia-gallery-big container. It will keep the image ratio and proportion of the big preview images intact. And more importantly, the whole part of the images will be visible inside the big preview container. This is why they are resized that way. You can set the height property to auto but most part of the images, specially big images, will get cut off. Try this in the Quick CSS field, let us know which one you prefer:

    #top div .avia-gallery .avia-gallery-big-no-crop-thumb img {
      height: auto !important;
    }

    Best regards,
    Ismael

    in reply to: blog adaptions #471371

    Hey!

    A: You can apply a top padding to the section to vertically align the content inside it:

    div#av_section_3 .container {
      padding-top: 60px;
    }

    Apply a unique id to the color section then use that selector instead of the generic selector above.

    B: Instead of using the special heading, you can manually code the title using a code or a text block. Apply the link: http://www.w3schools.com/html/html_links.asp

    Best regards,
    Ismael

    in reply to: Single product sidebar #471370

    Hey!

    Alright. Before we start with the modification, I want to know if you remove the code we suggested above. I look for it in the functions.php file but it’s not there. We need to confirm this because if we put the same function, the site will produce an error and we will not be able to edit the file again without FTP access.

    Cheers!
    Ismael

    Hey!

    A lot of forum threads, which seems to be having the same issue, suggested that you have to set the file permission to 775 or 777, basically granting full access to all user groups temporarily. Run the auto update then change the permission back to normal.

    OR

    This is just a wild guess, I’m not really sure if this is really going to help but please give it a try. Try to look for this directory or folder: C:\Windows\temp

    Right click on the folder, click properties then disable the Read Only attribute. Restart the server then try the auto update.

    Let us know if it helps. Aside from that, I don’t think we can provide any more useful information. I’m sorry if we can’t provide a knowledgeable or direct solution. Please contact a server administrator or hire a freelance developer. You can find someone here: http://kriesi.at/contact/customization

    And again, you can still update the theme via FTP.

    Cheers!
    Ismael

    in reply to: Customizing error404 page #471363

    Hi!

    It’s actually the same. The first column should end after this code:

    <div class='hr_invisible'>
    

    And the second half should start before this code:

    <section class="404_recommendation">
    

    Please get the code from pastebin that we provided above: http://pastebin.com/davKbdDk

    Look for the flex column container. I think you will understand the code from that.

    Regards,
    Ismael

    in reply to: Problem with Enfold and OptimizePress #471359

    Hi!

    I tried to login to the site but the wp admin got redirected to this page: http://latitudes.org/members/profile.php

    The login credentials above are not working. Is this the only page with the optimizepress plugin activated? http://latitudes.org/store/should-you-consider-pandas-ebook/

    You can replace this selector (body.op-plugin) with the page id.

    @media only screen and (min-width: 960px) { .page-id-14779 .container { max-width: 100%; }}
    

    Regards,
    Ismael

    in reply to: Hidden products #471355

    Hey!

    Alright. The post navigation or the arrows on each side of the page can only filter same custom post types but it doesn’t recognize hidden products. You can set the arrows to filter products from the same categories and then edit the hidden products. Remove them from any categories temporarily. Add this in the functions.php file:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
      if(is_singular('product')) {
        $settings['taxonomy'] = 'product_cat';
      }
    	$settings['same_category'] = true;
    	return $settings;
    }

    Since the hidden product doesn’t have any categories, it will not be included in the set of product items filtered by the post navigation.

    Best regards,
    Ismael

    in reply to: Final adaption of my blog #471350

    Hi!

    You can edit the image in the contact page then adjust the bottom position using css.

    .avia-image-container.av-styling-.avia-builder-el-5.avia-builder-el-no-sibling.avia-align-center {
      bottom: -120px;
    }

    You can replace the css selector with the custom css class. For further modifications, please contact codeable: http://kriesi.at/contact/customization

    Regards,
    Ismael

    in reply to: Button Issue on Mobile Devices #471348

    Hi!

    Sorry for the delay. I will ask Kriesi to check this thread personally. Please wait for his response.

    Regards,
    Ismael

    Hey Kyle!

    Thank you for using Enfold.

    Try to replace the code with this:

    .logo { left: 95px; bottom: -30px;}
    .main_menu div > ul > li > a { line-height: 120px !important; }
    
    .header-scrolled .logo { bottom: 0;}

    Best regards,
    Ismael

    Hi mattmikulla!

    Thank you for using Enfold.

    If I remember correctly, we suggested different ways in order to add your title in the main container instead of the breadcrumb container. Did you try any of them?

    This particular code will remove the title html, if that’s what you’re worried about, from the breadcrumb container: https://kriesi.at/support/topic/enfold-layout-breadcrumb-only-above-and-normal-page-headingheadline/#post-428658

    If you want to add the title when using the advance layout builder, you can add this in the functions.php file:

    add_action('avf_template_builder_content', 'ava_after_main_container_mod', 10, 1);
    function ava_after_main_container_mod($content = '') {
    	$content = get_the_title() . $content;
    	return $content;
    }

    If you’re not using the advance layout builder for pages, you can modify the page.php file. You can do these modifications or you can request for that particular feature here: https://kriesi.at/support/enfold-feature-requests/

    Best regards,
    Ismael

    Hi!

    Thank you for using Enfold. Glad you found the issue. If you have any question, let us know. :)

    Regards,
    Ismael

    Hi!

    I checked the site but I don’t see any lines under the menu items. Please provide a screenshot. Use imgur or dropbox.

    Cheers!
    Ismael

    in reply to: Font size and color #471311

    Hi Nathan!

    Thank you for using Enfold.

    You can add this to the Quick CSS field:

    .avia_textblock p, .avia_textblock {
      font-family: Courier;
      font-size: 16px;
      font-weight: 600;
    }

    Regards,
    Ismael

    in reply to: iPad Navigation – Vertical & Horizontal Layouts #471310

    Hey janeyj!

    Thank you for using Enfold.

    You can remove the code then replace it with:

    @media only screen and (min-width: 1024px) {
    .av-main-nav > li > a {
      letter-spacing: .5px;
      padding: 0 10px;
      font-family: 'Open Sans' !important;
      font-weight: 500;
      font-size: 15px;
    }}

    Best regards,
    Ismael

    in reply to: Insert a form into Advanced Layerslider? #471307

    Hi!

    Alright. Add this in the Quick CSS field:

    #custom-section {
      position: relative;
      margin-top: -200px;
      z-index: 200;
      background: none;
      border-top: 0;
    }

    Cheers!
    Ismael

    Hey!

    I check the product and the variations are quite different from the default woocommerce installation. There is a dollar sign beside the size attribute. There is a product variation in my installation but it doesn’t display any prices in the attribute options. Please try to deactivate the woocommerce extensions in the plugins directory.

    Cheers!
    Ismael

    • This reply was modified 10 years ago by Ismael.
    in reply to: Related products element not working #471299

    Hi!

    OK. There is this woocommerce function called get_related() and it turns out that it does filter by category plus the tags as well. If you have the same tags on product items they will be treated as related products.

    Regards,
    Ismael

    in reply to: Insert a form into Advanced Layerslider? #471286

    Hi!

    Alright. Please add another color section below the layer slider then apply a unique id in the Section ID field. Use “custom-section” for example. Inside the color section, add a text or code block then add the form code. Once you’re done, let us know then we’ll give you the css codes.

    Best regards,
    Ismael

    in reply to: Events Countdown Widget Bug #471285

    Hi!

    It should jump to the next upcoming event. This seems to work on my installation. Alright. Please create a test page.

    Cheers!
    Ismael

    in reply to: Events Countdown Widget Bug #470738

    Hi!

    Please try to edit the config-templatebuilder > avia-shortcodes > events_countdown.php. Remove everything then replace it with this: http://pastebin.com/z7vvR7PS

    Regards,
    Ismael

    in reply to: Strange 404 #470712

    Hey!

    First, please try to update the theme to the latest version, current version in your installation is 3.1.5. Update it to 3.2.2. If the update doesn’t fix the problem, try to deactivate all plugins then check it on another browser.

    Best regards,
    Ismael

    in reply to: Adding a thin line after a title #470704

    Hey!

    We can’t see the screenshot because it is protected. Please provide the login details here. You can also use imgur or dropbox for the screenshot.

    Best regards,
    Ismael

    in reply to: Logo center, navigation to the left & right of logo #470702

    Hey!

    We actually need to see the live website because we have to identify the menu item id. You can use these menu ids to adjust the position of a specific menu item. For starters, you can add this to hide the mobile menu and show the default menu:

    @media only screen and (max-width: 989px) {
    .responsive.html_mobile_menu_tablet .container #advanced_menu_toggle, .responsive.html_mobile_menu_tablet #advanced_menu_hide {
      display: none;
    }
    
    .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: block;
    }
    }

    Best regards,
    Ismael

Viewing 30 posts - 46,621 through 46,650 (of 66,046 total)