Forum Replies Created

Viewing 30 posts - 48,151 through 48,180 (of 67,566 total)
  • Author
    Posts
  • 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, 9 months 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

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

    Hey!

    It really doesn’t clear the entry because there are different forms on each slide. Is this form supposed to be sticky? Remove the form in the slides then add a text block or code block below the layer slider. Add the form script there. Use css to add a negative top margin property or top property to the code block to offset its position.

    Cheers!
    Ismael

    in reply to: Tracking Events #470649

    Hey!

    Try to put it in a single line:

    jQuery(‘.ga-buy-1 a’).attr(‘onclick’, ‘window.uetq = window.uetq || []; window.uetq.push({ \‘ec\':\’Video\’, \‘ea\':\’Play\’, \‘el\':\’Product Demo\’, \‘ev\':\’5\′ })\; ga(\’send\’, \’event\’, \’Buy Button\’, \’Resume\’, \’Resume Template Download\’)\;’);
    

    Regards,
    Ismael

    in reply to: Colour Section / Layer Slider options #470648

    Hey!

    Did you set the page to have a transparent header? Please edit the page then reset the Header visibility and transparency settings.

    Best regards,
    Ismael

    in reply to: Track email form #470644

    Hi Roshan!

    Thank you for using Enfold.

    You can use this filter to add an onclick attribute to the contact form’s submit button: https://kriesi.at/support/topic/support-request/#post-401071

    Or create a custom script in the functions.php file:

    add_action('wp_footer', 'get_value_mod', 10);
    function get_value_mod(){
    ?>
    <script>
    (function($) {
    	$('input[type="submit"]').on('click', function(event) {
    		function get_value() {
    			var email = $('#avia_e-mail_1').val(),
    				name = $('#avia_name_1').val();
    				
    				alert(name + ' : ' + email);
    		}
    		
    		get_value();
    	});
    }(jQuery));
    </script>
    <?php
    }

    Cheers!
    Ismael

    in reply to: Technical Question #470643

    Hey!

    Add this in the Quick CSS field to hide the button on mobile:

    @media only screen and (max-width: 767px) { 
         .click-me-toggle { display: none; } 
    }
    

    Cheers!
    Ismael

    in reply to: Product price style #470639

    Hi!

    Thank you for using Enfold.

    You can use this instead:

    .single-product .template-shop span.amount {
    font-size: 20px !important;
    text-align: right;
    display: block;
    }

    It will not affect the widgets in the footer area.

    Cheers!
    Ismael

    in reply to: cart position when the logo and menu is centred #470636

    Hi ermington!

    Thank you for using Enfold.

    Go to the Enfold > Shop Options panel then set the Header Shopping Cart Icon to “Always display attached to the main menu”.

    Regards,
    Ismael

    in reply to: Error with wpml #470634

    Hi moreleads!

    Thank you for using Enfold.

    Is there any issue with the site aside from the warnings? Please add this in the wp-config.php file to hide those warnings:

    define('WP_DEBUG', true);
    
    define('WP_DEBUG_LOG', true);
    
    define('WP_DEBUG_DISPLAY', false);

    Cheers!
    Ismael

    in reply to: Date picker filter days #470618

    Hey skreilos!

    Thank you for using Enfold.

    You can add this in the Quick CSS field to disable weekends:

    td.ui-datepicker-week-end a {
      pointer-events: none;
      color: red !important;
    }

    Cheers!
    Ismael

    in reply to: The title of my pages is not seen #470615

    Hi NBSIME!

    Thank you for using Enfold.

    You can activate the title and breadcrumbs container in the Enfold > Header > Header Title and Breadcrumbs settings. It is also possible to set the option for each page in the Layout settings.

    I checked the site and it’s using a very old version of theme, 2.8.1. Please update to the latest version 3.2.1. After the update, you may find broken elements, all you need to is to reconfigure the options or create the elements from scratch. Please update the theme regularly.

    Regards,
    Ismael

Viewing 30 posts - 48,151 through 48,180 (of 67,566 total)