Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #574541

    Hello again! is it possible to change the link that appears in the category below the image in the Avia editor content element post slider item
    i am sending you below the link to my site
    thanks

    #574666

    Hey ftt123!

    I am not sure if i understood you clearly. Can you please elaborate on the changes you would like to make? If it would be easier to explain, please post a screenshot.

    Regards,
    Yigit

    #575708

    Hello Yigit, i am sending you a screenshot below. thanks!!
    the fact is that i want the deffault link that appears below the image in the post slider, goes to my news page, not to the category page.

    #575793

    Hey!

    Please add following code to Functions.php file in Appearance > Editor and change the link to your news page

    function add_custom_cat_link_target(){
    ?>
    <script>
    jQuery(window).ready(function(){
    jQuery('.slide-content .blog-categories a').attr('href','http://kriesi.at');
    });
    </script>
    <?php
    }
    add_action('wp_footer', 'add_custom_cat_link_target');

    Regards,
    Yigit

    #737532

    Hello, is it possible NOT to show category names, dates, and # of comments in post sliders? It gets really noisy.
    Also there won’t be ways to “fix” the height of post sliders? I am having a stack of post sliders and they keep moving up and down…..

    #737706

    Hi,

    1- Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .slide-content .blog-categories,.slide-meta {
        display: none;
    }
    

    2- Try the following:
    1. Install this plugin: https://wordpress.org/plugins/simple-image-sizes/
    2. Go to Settings > Media
    3. Change the portfolio image size (increase its width / height).
    4. Regenerate the thumbnails by clicking the button at the bottom.

    Best regards,
    Yigit

    #738015

    Thank you! No 1 worked.
    For No2, it’s not about the image size. They are all trimmed to become the same size.
    I am having 2 post sliders side by side, and they are stacked (total 6 in one page). And the title can take 1 line or multiple, depending on how many letters there are. And when, for example, the title of the left slider is 2 lines and the right is also 2 lines, and the next slides are the same for both, the height is fixed. But when they become 1 lines, the height of the sliders shrink….
    I hope it makes sense to you….
    I guess my question would be, in other words, is there any way to pre-determine the number of lines for a title (or other elements), for example, at 3? ( When a title takes only 1 line, there will be extra space)

    #740124

    Hi,

    Thank you for the update. You can add a minimum height to the slider content.

    .slide-content {
        min-height: 86px;
    }

    Adjust the value if needed.

    Best regards,
    Ismael

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.