Forum Replies Created

Viewing 15 posts - 1 through 15 (of 15 total)
  • Author
    Posts
  • in reply to: Easy slider navigation arrows not responsive #137472

    Problem is fixed. It could be one of the plugins, but after deactivating all of the plugins, updating a few and reactivating them it works now.

    Another thing: you have to specify the Slideshow Image Size “Portfolio Small 260×185” in order for the .avia-super-small-width-slider to be applied. Or another option smaller than 300px wide.

    It doesn’t look at the parent column width to detect the size of the slideshow, but it looks at the image file name to see if the image is smaller than 305px wide.

    On the other hand, for .avia-small-width-slider seems that it detects the column width and applies this class even if the image

    I would like to hide the dots when I use these slideshows in 4 or 5 columns. I uploaded an image with original size 260×185 and in the slideshow I specified size: Original Size. The dots show.

    Of course I can save the originals at 260×185 and choose this size in the slideshow options. The problem is at this size the images are not looking good on hi def screens like on an iphone.

    I will figure it out and eliminate the dots. My question is:

    What width should be the images to fit 100% in a slideshow inside a 1/3 column element, 1/4 col element and 1/5?

    Same question for high def screens? I guess double the size?

    I like to optimize and save the images the right size I need. What is the best approach to do so and have the perfect images for slideshows in columns without having them resized by wordpress?

    in reply to: Easy slider navigation arrows not responsive #137471

    I tried on a clean installation on a different server and it works as it should.

    I will have to troubleshoot on my end with deactivating plugins and a clean installation on this server.

    in reply to: Easy slider navigation arrows not responsive #137469

    Still not working on my end. I see it working on your test server.

    Is this a bug or it might be something wrong with my installation. I will try to install the theme on a test domain and server with nothing else, just the theme and see if it works there or not by default without any hacks.

    I’m copying below a bigger chunk of my code with your addons, please see if you spot any errors.

    /**
    * Frontend Shortcode Handler
    *
    * @param array $atts array of attributes
    * @param string $content text within enclosing form of shortcode element
    * @param string $shortcodename the shortcode found, when == callback name
    * @return string $output returns the modified html string
    */
    function shortcode_handler($atts, $content = "", $shortcodename = "", $meta = "")
    {
    global $avia_config;

    $avia_config['current_column'] = $shortcodename;

    $first = '';
    if (isset($atts[0]) && trim($atts[0]) == 'first') $first = 'first';

    if($first)
    {
    if(!empty($meta['siblings']['prev']['tag']) &&
    in_array($meta['siblings']['prev']['tag'], array('av_one_full','av_one_half', 'av_one_third', 'av_two_third', 'av_three_fourth' , 'av_one_fourth' , 'av_one_fifth' ,'av_textblock')))
    {
    avia_sc_columns::$extraClass = "column-top-margin";
    }
    else
    {
    avia_sc_columns::$extraClass = "";
    }
    }

    if(in_array( $shortcodename, array('av_one_third', 'av_two_third', 'av_three_fourth') )) $meta['el_class'] .= ' avia-small-width-slider ';
    if(in_array( $shortcodename, array('av_one_fourth' , 'av_one_fifth') )) $meta['el_class'] .= ' avia-super-small-width-slider ';

    $output = '<div class="flex_column '.$shortcodename.' '.$first.' '.$meta['el_class'].' '.avia_sc_columns::$extraClass.'">';

    //if the user uses the column shortcode without the layout builder make sure that paragraphs are applied to the text
    $content = (empty($avia_config['conditionals']['is_builder_template'])) ? ShortcodeHelper::avia_apply_autop(ShortcodeHelper::avia_remove_autop($content)) : ShortcodeHelper::avia_remove_autop($content, true);

    $output .= $content.'</div>';

    unset($avia_config['current_column']);

    return $output;
    }
    }
    }

    in reply to: Easy slider navigation arrows not responsive #137467

    replaced, cleared cache, refreshed, no changes.

    Also your function does not take care of .avia-super-small-width-slider class. (removes the dots)

    I would try to reupload all the files, but that resets the map widget (at least).

    Can you show me those sliders on another functional website where they work (except the demo)?

    I would like to see if it is working for others before reuploading all the files.

    Thanks.

    in reply to: Easy slider navigation arrows not responsive #137465

    Kriesi, any news on this issue?

    in reply to: Easy slider navigation arrows not responsive #137464

    myusername .com

    at the bottom of the home page there are 4 small slideshows with big arrows instead of smaller ones.

    in reply to: Laptop 1366×768 acting like mobile device #136548

    I found the bug why the arrows are not responsive:

    There is this file which controls the responsive part of those slideshow arrows:

    enfold/config-templatebuilder/avia-shortcodes/slideshow.php

    line 272 to 279 which should add these classes to the slideshow if it’s size is <600px or <305px :

    .avia-small-width-slider

    .avia-super-small-width-slider

    The classes are defined in: css/shortcodes.css line 2095.

    The problem is that the config-templatebuilder/avia-shortcodes/slideshow.php is not adding those classes after inspecting the code preview of the page.

    I tried on two different pages and uploaded many files from the new update just to make sure I have the new version.

    I see it is working on your demo here:

    http://kriesi.at/themes/enfold/pages/services/

    One thing I will mentioned that I renamed my theme folder from enfold to 2013 before setting everything up. Not sure if this could cause that function to now work.

    Thanks!

    in reply to: Laptop 1366×768 acting like mobile device #136546

    I decided not to mess up with targeting the touch screen laptop.

    But can you point me to the piece of code and file file (css or js) that controls the easy slider arrow buttons size?

    I will figure it out from there how to modify the size and target the tablet portrait mode.

    Thanks!

    in reply to: Laptop 1366×768 acting like mobile device #136544

    Yes, I mentioned in the Q1 that the laptop is touch screen. Not sure how the css targets the touch enabled device instead of the screen resolution.

    Q3: the website has the construction mode plugin activated.

    Here is a screenshot of how the easy sliders look on my ipad:

    https://www.dropbox.com/s/iwaqbx8lptf6lzz/Photo%20Aug%2021%2C%201%2029%2027%20AM.png

    I can target that specific page in css.

    Just need the part that targets the ipad and the css part that controls those buttons

    Q4. I figured it out using templates.

    Thank you!

    in reply to: Laptop 1366×768 acting like mobile device #136542

    I don’t care for Q1, but would like a fix 2 and 3 if possible. Thanks.

    in reply to: Edit LyerSlider Image source URL #135168

    Thanks, this helped. Thanks.

    in reply to: Logo Alt & Title Text #135309

    you’ll have to modify themes/enfold/framework/php/function-set-avia-frontend.php

    line 429 or 435.

    I tried to copy this file in the in the child theme (same directory structure) and didn’t work, so I modified it in the main theme folder.

    in reply to: Fixed header not squeezing when scrolling on ipad. #135164

    this didn’t help for my laptop. Which actually works fine in IE, but not Chrome or Firefox. (the header is fixed on all browsers, but it doesn’t adjust in size/shrinks) when you scroll down.

    Had no time to test on iPad. I switched to a non fixed header. I think a non fixed header is better now.

    The fixed one worked differently in different browsers on different machines. I might try again after a theme update.

    Thanks for your support.

    My website is not live yet, working on it.

    in reply to: Fixed header not squeezing when scrolling on ipad. #135162

    .

    in reply to: Edit LyerSlider Image source URL #135166

    .

Viewing 15 posts - 1 through 15 (of 15 total)