Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #238817

    Hi,

    I have two issues: at http://www.regen-uk.co.uk

    1) On Homepage I am using the Twitter Widget with the blog widget above this. The issue I have is that the “Read More ” on each blog entry does not work on the homepage on safari or firefox. Can you please help.

    2) the second issue is that if the homepage products section you click onto solar pv the side panel navigation seems to be the wrong way round the anaerobic digestion should be on the right and the biomass on the left is this coorect or can it be altered ?

    Many thanks

    Peter

    #239471

    Hi condonpb!

    1- Please add following code to Quick CSS in Enfold theme options under Styling tab

    #av_section_1 > div > div > div > div > div.flex_column.av_one_third.avia-builder-el-15.el_after_av_two_third.avia-builder-el-last > div.avia-builder-widget-area.clearfix.avia-builder-el-18.el_after_av_blog.avia-builder-el-last {
    z-index: -1; }

    2- Please go to Appearance > Editor and open functions-enfold.php file and find

    $entries['prev'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['next'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['prev'] = get_previous_post($settings['same_category']);
    	            $entries['next'] = get_next_post($settings['same_category']);

    and change it to

    $entries['next'] = get_previous_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	            $entries['prev'] = get_next_post($settings['same_category'], $settings['excluded_terms'], $settings['taxonomy']);
    	        }
    	        else
    	        {
    	            $entries['next'] = get_previous_post($settings['same_category']);
    	            $entries['prev'] = get_next_post($settings['same_category']);

    Best regards,
    Yigit

    #239590

    Many thanks that has fixed it

    Pete

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Twitter Widget’ is closed to new replies.