Forum Replies Created

Viewing 30 posts - 9,181 through 9,210 (of 10,428 total)
  • Author
    Posts
  • in reply to: Fullwidth Easy Slider – jump to specific slider number #592573

    Hi!

    As i understand you want to place the round dots with text on the page using html code and when users click on the round dots the browser will scroll to the slider and activate the slide which is linked to the dots right?

    When you place the dot’s outside the slider area even with same class names it will lose all connections with the slider and it wont work… I’m afraid what you are trying to do is only possible with heavy jQuery scripting for which you need to hire a freelancer.

    Cheers!
    Vinay Kashyap

    in reply to: Changes in Event Callbacks for Layer Slider not saved #592569

    Hey!

    Please check this link for working examples at the bottom of the page…

    http://www.docs.purethemes.net/sukces/layerslider/documentation/documentation.html

    Hope this helps :)

    Regards,
    Vinay Kashyap

    in reply to: Mobile issues #592559

    Hey!

    To make the mobile header look like the screenshot

    Please add the below css to Quick CSS

    @media only screen and (max-width: 767px) {
    .responsive #top .logo {
         margin-left: 0px!important; 
    }
    .header_color .header_bg {
        min-height: 120px!important; 
    }
    .av-logo-container {
        top: -23px!important;
    }
    }

    Best regards,
    Vinay Kashyap

    in reply to: 6 column grid #592524

    Hey!

    We are working on your ticket please wait while we update the results here soon.

    Enable custom class support http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    Add class col-6 to color section

    Add the 6 1/5 elements inside the color section

    Add the below css in Enfold > General styling > Quick CSS

    /* 6 columns */
    .col-6 .column-top-margin { margin-top: 0px !important; }
    .col-6 div .av_one_fifth { width: 15%!important; margin-left: 2%; }
    .col-6 .first { margin-left: 0!important; clear: none; }
    .col-6 .el_after_av_one_fifth { margin-left: 2%!important; }

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.

    Hey!

    The disadvantage is that you don’t get to choose certain image size while inserting the image to post or assigning it to a post or a portfolio thumbnail.

    To do any custom modifications please use a child theme so you wont lose it after a theme update.
    http://kriesi.at/documentation/enfold/using-a-child-theme/

    You can go ahead and remove the lines you don’t want in child theme files.

    Best regards,
    Vinay Kashyap

    in reply to: header menu color on scrolldown transparent #592518

    Hi!

    Not clear what you are trying to do… let me rephrase you want to make the header transparent when the page is scrolled correct?
    Image of the header in private content. You want this to be transparent while scrolling the page right?

    Since there is white background on the page the menu items will not be visible if you make it transparent…

    Then the menu color has to be changed to black but that will make the menu look black color as soon as the page is loaded…
    You can make the menu items color different on scroll and also have to take care of it in the mobile view that is only possible with a lot of modifications… to accomplish this you might have to hire a freelancer.

    Best regards,
    Vinay Kashyap

    in reply to: Change drop down menu width #592512

    Hey khickman!

    Please use the following in Quick CSS

    .sub-menu {
        max-width:150px;
    }
    

    Best regards,
    Vinay Kashyap

    in reply to: Grid Height 100% #592507

    Hi!

    Sorry for the delay.
    We are working on your ticket please wait while we update the results here soon.

    To achieve the design similar tot he mockup you have shared.

    Please use a “Grid row” element and use 2 1/2 sections and background image and make it “stretch to fit”

    Turn on custom class http://kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    For the main Grid add class “full-height” as shown in the below screenshot

    Add the below css in Quick CSS

    /* Full height*/
    .full-height {
    height:100vh;
    }

    ANOTHER EASY WAY

    Enable enfold debug mode and Custom class support
    kriesi.at/documentation/enfold/enable-advanced-layout-builder-debug/

    Create a new page and paste the below shortcode in default editor and publish/update the page

    [av_layout_row border='' min_height='600px' color='main_color' mobile='av-flex-cells' id='' custom_class='full-height']
    [av_cell_one_half vertical_align='middle' padding='150px' padding_sync='true' background_color='#ffffff' src='http://localhost/_proj/enfold/wp-content/uploads/2015/07/minimal-workpiece-4-1-705x430.jpg' attachment='98' attachment_size='featured' background_attachment='scroll' background_position='top left' background_repeat='stretch' custom_class='']
    
    [/av_cell_one_half][av_cell_one_half vertical_align='top' padding='50px' padding_sync='true' background_color='' src='http://kriesi.at/themes/enfold-shop/files/2015/03/hipster-girls-working.jpg' attachment='554' attachment_size='full' background_attachment='scroll' background_position='center center' background_repeat='stretch']
    
    [/av_cell_one_half]
    [/av_layout_row]

    lastly select transparent header from the page right sidebar.

    If you still have issues please create a temporary user with ‘administrator’ role and share in private content with permission to deactivate all plugins and add custom code if necessary to help you resolve this issue.

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Limit the excerpt length for all portofolio items #592505

    Hi!

    we have limited the title and excerpts however it works till 90 characters… Not sure if it’s a wordpress thing to limit it because if you use 100 that strange problem with extra dots appear …….. so 90 is the limitation

    please feel free to change the number 15 in excerpt title to increase or decrease the title length

    return currentText.substr(0, 15); 
    

    The final code used for the modifications are

    
    // Excerpt length
    function custom_excerpt(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('.type-portfolio').each(function() {
         	jQuery("div.entry-content").text(function(index, currentText) {
         		return currentText.substr(0, 90);
    		 });
    	jQuery("div.entry-content").append("…");
        });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_excerpt');
    
    // Excerpt title
    function custom_title(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('.type-portfolio').each(function() {
         	jQuery("div.entry-title").text(function(index, currentText) {
         		return currentText.substr(0, 10);
    		 });
    	jQuery("div.entry-title").append("…");
        });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_title');

    Regards,
    Vinay Kashyap

    in reply to: Limit the excerpt length for all portofolio items #592325

    Hi!

    Yes we can do that with the titles …

    Sorry the code in function.php conflicted…. please login to your FTP and goto the child theme folder download the functions.php and remove the last block that says “// Title length” from functions.php and re-upload it or create a FTP user ID and share in private.

    Best regards,
    Vinay Kashyap

    in reply to: Limit the excerpt length for all portofolio items #592293

    Hey!

    We have replaced the 3 dots with ellipsis; (…) please check screenshot i do not see any issue what is the 10 dots at the end you mentioned? please share the link where we can inspect the element in question…

    Regards,
    Vinay Kashyap

    in reply to: contact form validation elements #592200

    Hey!

    Please add the following CSS to Quick CSS to change the font color

    
    /* Validation error font color*/
    .form_element.error input::-webkit-input-placeholder, 
    .form_element.error input:-moz-placeholder,
    .form_element.error input::-moz-placeholder,
    .form_element.error input:-ms-input-placeholder,
    .form_element.error input:placeholder-shown{
         color:#FFF!important;
         opacity: 1;
    }

    Best regards,
    Vinay Kashyap

    in reply to: Mega Menu Issues #592194

    Hey!

    Glad we could help you with this. we really appreciate if you rate our theme on themeforest :)
    Please feel free to get in touch with us if you have any questions.

    Thank you for using Enfold :)

    Best regards,
    Vinay Kashyap

    in reply to: Limit the excerpt length for all portofolio items #592192

    Hi!

    we have modified and updated the code please check the site now…
    To show more or less words please feel free to adjust the number 30 in line

    return currentText.substr(0, 30);  
    

    The code is in functions.php at the bottom.

    // Excerpt length
    function custom_excerpt(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('.type-portfolio').each(function() {
         	jQuery("div.entry-content").text(function(index, currentText) {
         		return currentText.substr(0, 30);     		
    		 });
         	jQuery("div.entry-content").append("...");        
        });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_excerpt');

    Best regards,
    Vinay Kashyap

    in reply to: Bugs with sorting Portfolio grid items #592182

    Hey!

    Sorry for the delay.
    We are working on your ticket please wait while we update the results here soon.

    To sort the portfolio items please use the order by option and the ascending or descending is relative to the order by option.

    We tested the portfolio item and it’s sort option in the backend and found no issue with it.
    Please see attached screenshots in private…
    Screenshot 1 – Order by Title
    Screenshot 2 – Order by Author

    You can also try this plugin to reorder items https://wordpress.org/plugins/post-types-order/

    To hide the image over lay please add the following CSS in Enfold > General Styling > Quick CSS
    http://kriesi.at/documentation/enfold/disable-css-overlay-on-images/

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Problem with Sorteable masonry posts #592176

    Hey!

    Sorry for the delay.

    We tested the link provided when i click load more there are no more items to load and the publications do not appear in the filter.. did you get this sorted? if not please share a mockup of the issue as we cannot see it on the link you have provided.

    Regards,
    Vinay Kashyap

    in reply to: Problems with Post Thumbnail Link and Comment Function #592159

    Hi gugler!

    Sorry for the delay.

    We checked for the issues you mentioned above..

    1. Clicking on featured image in blog post opened the same image in lightbox.

    2. Tested the comment section for the link posted in private and it worked fine.

    Not sure if you got this sorted…

    please get in touch with us if you have any questions we are more than happy to help you :)

    Cheers!
    Vinay Kashyap

    in reply to: Mobile Menu Sticky Issue #592137

    Hey!

    Sorry for the delay.
    We are working on your ticket please wait while we update the results here soon.

    Looks like you have sorted out the fixed mobile menu issue… The logo jumps to the right because the scroll bar is deactivated when you click the menu…

    To resolve this make the mobile menu container 100% wide and add some padding to the logo to left and some margin to the menu buttons.

    Use the below css in Enfold > General Styling > Quick CSS

    /* mobile menu adjustments */
    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .container {
        width: 100%!important;
        max-width: 100%!important;
        padding-left: 20px!important;
    }
    #top #wrap_all .av_header_transparency, .av_header_transparency #advanced_menu_toggle {
        margin-right: 20px!important;
    }
    }

    Best regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Blog posts now showing up #592115

    Hey!

    Sorry for the delay.
    We are working on your ticket please wait while we update the results here soon.

    in the blog post element the blog catogery in which the post was… was not selected we selected it for you and it is now working fine. please check the site :)

    Cheers!
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Aweber form in grid post layout #592109

    Hi!

    You can put the aweber code in any grid section if you can insert a text widget into it.

    Cheers!
    Vinay Kashyap

    in reply to: How to keep woocommerce custom code when updating #592081

    Hey!

    Sorry for the delay.
    We are working on your ticket please wait while we update the results here soon.

    To customize the “Return to shop” button link

    1. Activate child theme from Appearance > themes> enfold child

    2. Copy paste everything in this link to http://pastebin.com/raw/9TQ3u9cR to
    enfold-child\woocommerce\cart\cart-empty.php

    I noticed you already tried this.

    Make sure you are using latest version of enfold and woocommerce and the enfold child theme is active.
    Try with the code provided in the link and let us know if it re-directs to google.com when you click “Return to shop” button
    Change “http://google.com&#8221; in the last line to your shop page.

    If the above is done correctly it will work 100% :)

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Woo commerce expiration date alignment #592000

    Hey!

    We are working on your ticket please wait while we update the results here soon.

    Please add this to Enfold > General Styling > Quick CSS

    /* Woo Commerce validation label*/
    .form-row.form-row-first label{
    	float:left!important;
    	clear:both!important;
    	width:100%;
    }

    Best regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.

    Hey wacky32!

    The login credentials you’ve provided do not work please send us working login credentials with user role as ‘administrator’ and permission to disable all plugins and add css if necessary to resolve the issue.

    Have you tried the Advance layout builder > Content Element > “Masonry” element ?

    Regards,
    Vinay Kashyap

    in reply to: Icon Default Inline Style Problem #591970

    Hey!

    We are working on your ticket please wait while we update the results here soon.

    Please check the link in private content

    1. We added the below custom css in quick css

    /* Adapt icon border */
    .adapt-icon-border span{
        padding: 20px!important; 
    }
    
    /* Remove icon border  */
    .remove-icon-border span{
        border-style: none!important;
    }

    2. Enabled custom class name support
    kriesi.at/documentation/enfold/turn-on-custom-css-field-for-all-alb-elements/

    add class “remove-icon-borde” to show captions without the round border it will look like inline icons
    add class “adapt-icon-border” and adjust the padding in css to shrink the border around the icons.

    You can still use the default inline icons and icons with round border :)

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: color section at least 60% #591950

    Hi THobbes!

    The code has changed a bit

    1. When you open the file “enfold\config-templatebuilder\avia-shortcodes\section.php” in a text editor press Ctrl + F and search for keyword term “Section Minimum Height

    2. Look for
    __(‘At least 75&percnt; of Browser Window height’,’avia_framework’ ) =>’75’,
    Below that line add
    __(‘At least 60&percnt; of Browser Window height’,’avia_framework’ ) =>’60’,

    3. The rest of the changes in enfold/js/shortcodes.js

    look for
    wh75 = Math.round( wh100 * 0.75 ),
    below that line add
    wh60 = Math.round( wh100 * 0.6 ),

    look for
    css += “.av-minimum-height-75 .container {height:”+wh75+”px;}\n”;
    below that line add
    css += “.av-minimum-height-60 .container {height:”+wh60+”px;}\n”;

    Cheers!
    Vinay Kashyap

    in reply to: Strange glitch – white line #591949

    Hey shaversky!

    The white line appears only when the browser is exactly some 1370px wide
    How is the grid setup? it looks much different on a wider screen.. please see private message for screenshot.

    To resolve this issue use a color section and a 1/3 grid inside it like the below screenshot

    Regards,
    Vinay Kashyap

    in reply to: Limit the excerpt length for all portofolio items #591915

    Hi!

    Sorry for the delay. Bumping your own tickets will not help you get faster response as the tickets move to the bottom.

    We are working on your ticket please wait while we update the results here soon.

    There are two ways you can do this

    1.the CSS way
    2. the jQuery way

    NOTE: Use only one method for best results.

    1. CSS Way

    Just add the below css to Quick CSS

    /* Excerpt length*/
    .av-masonry-entry .av-masonry-entry-title + .av-masonry-entry-content {
        max-height: 34px!important;
    }
    

    2. The jQuery way
    We have added the below code in functions.php

    // Excerpt length
    function custom_excerpt(){
    ?>
    <script>
    jQuery(window).load(function(){
        jQuery('.type-portfolio').each(function() {
         	jQuery("div.entry-content").text(function(index, currentText) {
         		return currentText.substr(0, 84);
    		 });        
        });
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'custom_excerpt');

    Regards,
    Vinay Kashyap

    • This reply was modified 8 years, 8 months ago by Vinay.
    in reply to: Limit the excerpt length for all portofolio items #591909

    Hi WebVizion!

    You have another ticket open for the same issue.
    We will close this duplicate ticket so we can concentrate on one post and help you resolve faster.

    Cheers!
    Vinay Kashyap

    in reply to: How is this overlay made? #591559

    Hi!

    This is in ref with Enfold theme
    As yigit mentioned after you add image element click on it for more options and add image caption to make an overlay.

    Best regards,
    Vinay Kashyap

    Hi!

    You are most welcome :)

    If you have any questions please feel free to get in touch with us.

    Regards,
    Vinay Kashyap

Viewing 30 posts - 9,181 through 9,210 (of 10,428 total)