Viewing 28 posts - 1 through 28 (of 28 total)
  • Author
    Posts
  • #1339012

    hi one more time everyone, I have two problems that I can’t solve, I wish the links were blue and not red as they are now, but when I set the blue in the enfold panel it doesn’t change me to blue only the links but also all the text of the article written in bold, how can I do to solve?

    problem two I would like you to see the publication date of the article within the article itself and not only in the preview, how should I do?

    #1339164

    up

    #1339299

    can someone help me please?

    #1339325

    Hi,

    Thanks for contacting us!

    Could you please post a link of your website and a screenshot showing the changes you would like to make so we can provide you an accurate solution? You can upload your screenshots on imgur.com and share the links here :)

    Best regards,
    Yigit

    #1339458

    first problem, the links and the bold lettering have the same color, I want the blue links and the red bold lettering how do I do? if I change the color of the links in main content, the color of the bold also changes

    problem two, in the first image you see the release date in the preview and that’s right
    in the second image you can see the inside of the article, here you don’t see the publication date of the article, how can I show it?

    #1339511

    Hi,

    Thanks for that. You can set the colour for the strong tag under Enfold->Advanced Styling, could you try that out please? If you need further help, then please include admin WordPress login details in private.

    Best regards,
    Rikard

    #1339628
    This reply has been marked as private.
    #1339657

    Hi,

    1- I added following code to bottom of Quick CSS field

    .main_color a > strong {
      color: inherit;
    }

    2- Please add following shortcode to top of your posts to display post meta data – https://pastebin.com/YRuhras6

    Best regards,
    Yigit

    #1339669

    thanks to it worked but only partially, some links remained red. as below


    for the data in the articles do you mean that I have to copy that code in 700 articles?

    #1339671

    sorry if I say this, but it seems incredible to me that there is not a button to change the color of all links regardless of whether they are bold or not, and I find it incredible that there is not a button to see or not the publication date at all interior of the articles, to be a premium theme!

    #1340017

    can you help me please?

    #1340156

    Hi,
    Thank you for your patience, I have added this css to address the three types of links that were still red in your posts:

    #top #main p > strong > span > a,
    #top #main .abh_name.fn.name a,
    #top #main .entry-content p > span > a {
    	color: #0000ff!important;
    }

    2022-02-11_062904.jpg
    if you find anymore links in a post that is still red please link to it so we ca examine it.

    Best regards,
    Mike

    #1340173

    seems to work thank you very much, for the date inside the articles can you do something please?

    #1340175

    in other articles there are still red links …… I feel like crying :(

    #1340178

    here you see many reds
    https://isoladipatmos.com/2020/12/

    #1340224

    Hi,
    Thanks for the link, I adjusted for these, please clear your browser cache and check if you can find any more.

    Best regards,
    Mike

    #1340255

    thanks, even cleaning the cookies there are still many red links :(

    #1340259

    Hi,
    Please link to the pages so I can create css rules that filter for these, I have checked many pages but don’t see any links that are red.

    Best regards,
    Mike

    #1340260
    #1340262

    Hi,
    Thank you, I adjusted for these also, please clear your browser cache and check again.

    Best regards,
    Mike

    #1340278

    seems to have worked !!! I’ll let the customer check if it’s okay!

    can you help me for the article insertion date? I would like to see it in all the articles, thank you so much

    #1340285

    Hi,
    Glad to hear, please have the customer check and link to any they find.
    As for the article date, in the Theme Options ▸ Blog Styling you were using the Modern Business which doesn’t show the date, I changed it to Default Business which does, please check:
    2022-02-12_003.jpg
    2022-02-12_004.jpg

    Best regards,
    Mike

    #1340288

    ok the problem is that on the home page the business style has the preview too short and it is not as beautiful as this one

    is it possible to do longer preview like here?

    Thank you so much

    #1340393

    Hi,
    Ok, to display the post meta data you either need to manually add the shortcode Yigit posted above to every post, which you don’t want to do, or change the Theme Options ▸ Blog Styling to one that shows the post meta data, the only issue you seem to have with this is that the excerpts are too short and the meta was above the excerpts, so I added this to your functions.php to make the excerpts longer:

    add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 300;
       return $length;
    }

    and this to more the blog grid meta below the excerpt:

    function custom_script() { ?>
        <script>
    (function($){
      $( '.slide-entry' ).each(function() {
      $( this ).find( '.slide-meta' ).insertAfter( $(this).find('.entry-footer'));
      });
     })(jQuery);
     </script>
        <?php
    }
    add_action('wp_footer', 'custom_script');

    I believe that it is very close to matching, probably no one will notice the change:
    2022-02-13_103828.jpg
    and now the posts have the meta:
    2022-02-13_009.jpg

    Best regards,
    Mike

    #1340410

    thank you very much, one more thing, I hope it is the last !!! sorry if i bother you !! you can see in the image below the words “comments are closed” is it possible to put it right?

    #1340414

    Hi,
    Ok, I added this script to the precious script:

    (function($){
      $('.comment-entry').each(function() {
      $( this ).find('.commentsclosed ').css({ 'text-align': 'center' }).insertBefore( $(this).find('#comments'));
      });
    })(jQuery);

    2022-02-13_022.jpg
    Please let us know once check this so we can close this thread, it is getting off topic and is very long, we try to keep the threads on a singlet opic so future users can find solutions easily, naturally if you have more questions you are welcome to open a new thread and we will help.

    Best regards,
    Mike

    #1340459

    perfect thank you so much so much

    #1340486

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.

    Best regards,
    Mike

Viewing 28 posts - 1 through 28 (of 28 total)
  • The topic ‘link color and article date’ is closed to new replies.