Forum Replies Created

Viewing 15 replies - 61 through 75 (of 79 total)
  • Thread Starter onico0

    (@onico0)

    Here, the code for Avada 3.9 working with EPL 2.3.1, and use Slidingbar Widget 1 as sidebar ??

    File to be added to /themes/Avada/archive-listing.php

    <?php get_header(); ?>
    	<?php
    	$container_class = '';
    	$timeline_icon_class = '';
    	$post_class = '';
    	$content_css = 'width:100%';
    	$sidebar_css = 'display:none';
    	$content_class = '';
    	$sidebar_exists = false;
    	$sidebar_left = '';
    	$double_sidebars = false;
    
    	$sidebar_1 = 'slidingbar-widget-1'; // / ! \ important : inclusion Slidingbar Widget 1 d'Avada  default :$smof_data['blog_archive_sidebar'];
    	$sidebar_2 = $smof_data['blog_archive_sidebar_2'];
    	if( $sidebar_1 != 'None' && $sidebar_2 != 'None' ) {
    		$double_sidebars = true;
    	}
    
    	if( $sidebar_1 != 'None' ) {
    		$sidebar_exists = true;
    	} else {
    		$sidebar_exists = false;
    	}
    
    	if( ! $sidebar_exists ) {
    		$content_css = 'width:100%';
    		$sidebar_css = 'display:none';
    		$content_class= 'full-width';
    		$sidebar_exists = false;
    	} elseif($smof_data['blog_sidebar_position'] == 'Left') {
    		$content_css = 'float:right;';
    		$sidebar_css = 'float:left;';
    		$sidebar_left = 1;
    	} elseif($smof_data['blog_sidebar_position'] == 'Right') {
    		$content_css = 'float:left;';
    		$sidebar_css = 'float:right;';
    		$sidebar_left = 2;
    	}
    
    	if($double_sidebars == true) {
    		$content_css = 'float:left;';
    		$sidebar_css = 'float:left;';
    		$sidebar_2_css = 'float:left;';
    	} else {
    		$sidebar_left = 1;
    	}
    
    	if($smof_data['blog_archive_layout'] == 'Large Alternate') {
    		$post_class = 'large-alternate';
    	} elseif($smof_data['blog_archive_layout'] == 'Medium Alternate') {
    		$post_class = 'medium-alternate';
    	} elseif($smof_data['blog_archive_layout'] == 'Medium') {
    		$post_class = 'medium';
    	} elseif($smof_data['blog_archive_layout'] == 'Grid') {
    		$post_class = 'grid-post';
    		$container_class = sprintf( 'grid-layout grid-layout-%s isotope', $smof_data['blog_grid_columns'] );
    	} elseif($smof_data['blog_archive_layout'] == 'Timeline') {
    		$post_class = 'timeline-post';
    		$container_class = 'timeline-layout isotope';
    		if($smof_data['blog_archive_sidebar'] != 'None') {
    			$container_class = 'timeline-layout timeline-sidebar-layout isotope';
    			$timeline_icon_class = ' has-sidebar';
    		}
    	}
    	?>
    	<div id="content" class="<?php echo $content_class; ?>" style="<?php echo $content_css; ?>">
    		<?php if(category_description()): ?>
    		<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
    			<div class="post-content">
    				<?php echo category_description(); ?>
    			</div>
    		</div>
    		<?php endif; ?>
    		<?php if($smof_data['blog_archive_layout'] == 'Timeline'): ?>
    		<div class="timeline-icon<?php echo $timeline_icon_class; ?>"><i class="fusionicon-bubbles"></i></div>
    		<?php endif; ?>
    		<div id="posts-container" class="<?php echo $container_class; ?> clearfix">
    			<?php
    			$post_count = 1;
    
    			$prev_post_timestamp = null;
    			$prev_post_month = null;
    			$prev_post_year = null;
    			$first_timeline_loop = false;
    
    			while(have_posts()): the_post();
    				$post_timestamp = strtotime($post->post_date);
    				$post_month = date('n', $post_timestamp);
    				$post_year = get_the_date('o');
    				$current_date = get_the_date('o-n');
    			?>
                            <?php
                            if (function_exists('epl_property_blog')){
                            echo epl_property_blog();
                            }
                            ?>
    			<?php if($smof_data['blog_archive_layout'] == 'Timeline'): ?>
    			<?php if($prev_post_month != $post_month || $prev_post_year != $post_year): ?>
    				<div class="timeline-date"><h3 class="timeline-title"><?php echo get_the_date($smof_data['timeline_date_format']); ?></h3></div>
    			<?php endif; ?>
    			<?php endif; ?>
    			<?php $thumb_class = ''; ?>
    			<?php if(get_post_meta(get_the_ID(), 'pyre_video', true) ): ?>
    			<?php $thumb_class = ' has-post-thumbnail'; ?>
    			<?php endif; ?>
                <?php /* Here some code removed coz of duplicate content */ ?>
    			<?php
    			$prev_post_timestamp = $post_timestamp;
    			$prev_post_month = $post_month;
    			$prev_post_year = $post_year;
    			$post_count++;
    			endwhile;
    			?>
    		</div>
    	</div>
    	<?php if( $sidebar_exists == true ): ?>
    	<?php wp_reset_query(); ?>
    	<div id="sidebar" class="sidebar" style="<?php echo $sidebar_css; ?>">
    		<?php
    		if($sidebar_left == 1) {
    			generated_dynamic_sidebar($sidebar_1);
    		}
    		if($sidebar_left == 2) {
    			generated_dynamic_sidebar_2($sidebar_2);
    		}
    		?>
    	</div>
    	<?php if( $double_sidebars == true ): ?>
    	<div id="sidebar-2" class="sidebar" style="<?php echo $sidebar_2_css; ?>">
    		<?php
    		if($sidebar_left == 1) {
    			generated_dynamic_sidebar_2($sidebar_2);
    		}
    		if($sidebar_left == 2) {
    			generated_dynamic_sidebar($sidebar_1);
    		}
    		?>
    	</div>
    	<?php endif; ?>
    	<?php endif; ?>
    <?php get_footer(); ?>

    any improvement would be appreciate

    Same issue… I follow the thread. And the permalink is concatenate with itself if you modify the data in Yoast SEO.

    Thread Starter onico0

    (@onico0)

    Sorry, I just found this, I think I’m saved with that : https://easypropertylistings.com.au/support/topic/avada-theme-wont-work/

    keep in touch ??

    Thread Starter onico0

    (@onico0)

    the complexe /includes/social-members-extension.php
    for people who have issues with URL field type

    <?php
    // $show_fbcj_in_header - Display the facebook widget using our xprofile data and return it in the members header
    
    function show_fbcj_in_header()
    {
    	// Get all the options
     $fbcj_members = get_option('fbcj-members');
     $fb_img = get_option('fb_icon');
     $tw_img = get_option('tw_icon');
     $gp_img = get_option('gp_icon');
     $pt_img = get_option('pt_icon');
     $li_img = get_option('li_icon');
     $tm_img = get_option('tm_icon');
     $fl_img = get_option('fl_icon');
     $in_img = get_option('in_icon');
     $yt_img = get_option('yt_icon');
     $ms_img = get_option('ms_icon');
    
     $fbcj_username= xprofile_get_field_data(get_option('fbcj_member_label'));
     $twcj_username= xprofile_get_field_data(get_option('twcj_member_label'));
     $gpcj_username= xprofile_get_field_data(get_option('gpcj_member_label'));
     $ptcj_username= xprofile_get_field_data(get_option('ptcj_member_label'));
     $licj_username= xprofile_get_field_data(get_option('licj_member_label'));
     $tmcj_username= xprofile_get_field_data(get_option('tmcj_member_label'));
     $incj_username= xprofile_get_field_data(get_option('incj_member_label'));
     $flcj_username= xprofile_get_field_data(get_option('flcj_member_label'));
     $ytcj_username= xprofile_get_field_data(get_option('ytcj_member_label'));
     $mscj_username= xprofile_get_field_data(get_option('mscj_member_label'));
    
     if($fb_img=='fb_icon1') { $img_url= plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/fb1.png';}
     if($fb_img=='fb_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/fb2.jpg';}
     if($fb_img=='fb_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/fb3.png';}
     if($fb_img=='fb_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/fb4.gif';}
    
         if ( $fbcj_username != ""  )
         {
          // check to see the facebook field has data
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($fbcj_username);
            if($a['href'])
            {
                  $fb_href=$a['href'];
            }
            else
            {
                 $fb_href=$fbcj_username;
            }
            ?><a class="bp-fb-profile" href="<?php echo $fb_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Facebook" /></a><?php
        }
    
     	if($tw_img=='tw_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/twitter1.png';}
    	if($tw_img=='tw_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/twitter1.png';}
    	if($tw_img=='tw_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/twitter1.png';}
    	if($tw_img=='tw_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/twitter1.png';}
    
    	if ( $twcj_username != "" ) 
    
    	{
    	// check to see the twitter field has data
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($twcj_username);
            if($a['href'])
            {
                  $tw_href=$a['href'];
            }
            else
            {
                 $tw_href=$twcj_username;
            }
    ?>
    	<a class="bp-fb-profile" href="<?php echo $tw_href; ?>" class="twitter-follow-button" data-show-count="<?php bp_twitter_member_count(); ?>" <?php if (get_option('twittercj-button-size')==1) echo 'data-size="large""'; ?> target="_blank"><img src="<?php echo $img_url; ?>" alt="Twitter" /></a>
    	<script>!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");</script>
    <?php
    	}
    	if($gp_img=='gp_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/google-plus1.png';}
    	if($gp_img=='gp_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/google-plus2.png';}
    	if($gp_img=='gp_icon3') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/google-plus3.png';}
    	if($gp_img=='gp_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/google-plus4.png';}
    
    	if($gpcj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($gpcj_username);
            if($a['href'])
            {
                  $gp_href=$a['href'];
            }
            else
            {
                 $gp_href=$gpcj_username;
            }
    ?>
    	<a class="bp-fb-profile" href="<?php echo $gp_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Google Plus" /></a>
    	<?
    		}
    		if($pt_img=='pt_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/pinterest1.png';}
    		if($pt_img=='pt_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/pinterest2.png';}
    		if($pt_img=='pt_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/pinterest3.png';}
    		if($pt_img=='pt_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/pinterest4.png';}
    
    		if($ptcj_username != "" )
    		{
                //PERSONNAL MODIF
                $a = new SimpleXMLElement($ptcj_username);
                if($a['href'])
                {
                      $pt_href=$a['href'];
                }
                else
                {
                     $pt_href=$ptcj_username;
                }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $pt_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Pinterest" /></a>
    	<?
    	}
    	if($li_img=='li_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/linkedin1.png';}
    	if($li_img=='li_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/linkedin2.png';}
    	if($li_img=='li_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/linkedin3.png';}
    	if($li_img=='li_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/linkedin4.png';}
    
    	if($licj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($licj_username);
            if($a['href'])
            {
                  $li_href=$a['href'];
            }
            else
            {
                 $li_href=$licj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $li_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="LinkedIn" /></a>
    	<?
    	}
    	if($tm_img=='tm_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/tumblr1.png';}
    	if($tm_img=='tm_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/tumblr2.png';}
    	if($tm_img=='tm_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/tumblr3.png';}
    	if($tm_img=='tm_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/tumblr4.png';}
    
    	if($tmcj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($tmcj_username);
            if($a['href'])
            {
                  $tm_href=$a['href'];
            }
            else
            {
                 $tm_href=$tmcj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $tm_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Tumblr" /></a>
    	<?
    	}
    	if($in_img=='in_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/instagram1.png';}
    	if($in_img=='in_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/instagram2.png';}
    	if($in_img=='in_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/instagram3.png';}
    	if($in_img=='in_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/instagram4.png';}
    
    	if($incj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($incj_username);
            if($a['href'])
            {
                  $in_href=$a['href'];
            }
            else
            {
                 $in_href=$incj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $in_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Instagram" /></a>
    	<?
    	}
    	if($fl_img=='fl_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/flickr1.png';}
    	if($fl_img=='fl_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/flickr2.png';}
    	if($fl_img=='fl_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/flickr3.png';}
    	if($fl_img=='fl_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/flickr4.png';}
    
    	if($flcj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($flcj_username);
            if($a['href'])
            {
                  $fl_href=$a['href'];
            }
            else
            {
                 $fl_href=$flcj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $fl_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="FlickR" /></a>
    	<?
    	}
    	if($yt_img=='yt_icon1') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/youtube1.png';}
    	if($yt_img=='yt_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/youtube2.png';}
    	if($yt_img=='yt_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/youtube3.png';}
    	if($yt_img=='yt_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/youtube4.png';}
    
    	if($ytcj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($ytcj_username);
            if($a['href'])
            {
                  $yt_href=$a['href'];
            }
            else
            {
                 $yt_href=$ytcj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $yt_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="YouTube" /></a>
    	<?
    	}
    	if($ms_img=='ms_icon1') {  $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/myspace1.png';}
    	if($ms_img=='ms_icon2') { $img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/myspace2.png';}
    	if($ms_img=='ms_icon3') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/myspace3.png';}
    	if($ms_img=='ms_icon4') {$img_url=plugin_dir_url( 'buddypress-social-icons').'buddypress-social-icons/img/myspace4.png';}
    
    	if($mscj_username != "" )
    	{
            //PERSONNAL MODIF
            $a = new SimpleXMLElement($mscj_username);
            if($a['href'])
            {
                  $ms_href=$a['href'];
            }
            else
            {
                 $ms_href=$ytcj_username;
            }
    	?>
    	<a class="bp-fb-profile" href="<?php echo $ms_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="MySpace" /></a>
    	<?
    	}
    
    }
    	add_filter( 'bp_before_member_header_meta', 'show_fbcj_in_header' );
    
    	function bp_fb_member_count()
    		{
    
      		if (get_option('fbcj-count')==1)
      		{
    	    	echo 'true';
    		}
    		else
    		{
    			echo 'false';
    		}
    
    		}
    	function bp_twitter_member_count()
    	{
    		if (get_option('twittercj-count')==1)
    		{
    			echo 'true';
    		}
    		else
    		{
    			echo 'false';
    		}
    	}

    see you

    Thread Starter onico0

    (@onico0)

    or better

    $a = new SimpleXMLElement($fbcj_username);
            if($a['href'])
            {
                  $fb_href=$a['href']; // just save the good HREF
            }
            else
            {
                 $fb_href=$fbcj_username; // or here
            }
            ?><a class="bp-fb-profile" href="<?php echo $fb_href; ?>" target="_blank"><img src="<?php echo $img_url; ?>" alt="Facebook" /></a><?php // common display
    onico0

    (@onico0)

    Hi ! ??

    I join the request. Would be appreciate to filter the widget only on certain post types or only on default posts.

    Fixed by myself temporarily waiting for the upgrade…

    Modify

    addons/paypal/dopbsp-paypal.php

    change

    function expressCheckOut($language,
                                         $currency_code,
                                         $page_url){

    by

    function expressCheckOut($calendar_id,
                                               $language,
                                               $currency_code,
                                               $page_url,
                                               $extra_url){

    Changed :

    else{
    if ($(‘#DOPBSPCalendar-reservation’+ID).offset().top+$(‘#DOPBSPCalendar-reservation’+ID).height() > $(document).scrollTop()+$(window).height()){
    DOPPrototypes.scrollToY($(‘#DOPBSPCalendar-reservation’+ID).offset().top+$(‘#DOPBSPCalendar-reservation’+ID).height()-$(window).height()+50);
    }
    }

    by

    else{
    /* alert(ID);
    if ($(‘#DOPBSPCalendar-reservation’+ID).offset().top+$(‘#DOPBSPCalendar-reservation’+ID).height() > $(document).scrollTop()+$(window).height()){
    DOPPrototypes.scrollToY($(‘#DOPBSPCalendar-reservation’+ID).offset().top+$(‘#DOPBSPCalendar-reservation’+ID).height()-$(window).height()+50);
    } */
    }

    in jquery.dop.frontend.BSPCalendar.js

    resolve temporarily the issue

    cheers

    PS : already send you an e-mail but no answer yet, and resolve these bugs is urgent for my customer. You can send me the process to easily upgrade to pro and I will suggest it to my customer.

    One more person with the same issues. Ticket opened for 1 week already -_-‘

    One more with the same issue, a website based on twentythirteen, just few plugins (page builder and polylang installed). Is these bugs are also in the Pro version ?

    Thread Starter onico0

    (@onico0)

    I think I got it by adding A_I to the id field of the table wp_dopbsp_settings_payment.

    Now you are aware about that for the next update ??

    thx GoranMagdic

    My fix works fine for people who cannot wait for the next release in production website : https://github.com/Automattic/jetpack/issues/1125#issuecomment-154146167 ??

    Thread Starter onico0

    (@onico0)

    Hello again,

    Another suggestion is to localize the plugin because some translation are missing such as “Add a featured image”.

    I did it just by :

    1 – adding this on the top of of _cosntruct :

    load_plugin_textdomain( 'wp-front-end-editor', false,  basename( dirname(__FILE__) ) . "/languages" );

    2 – add the domain name of the plugin handler :

    __( 'Add a featured image', 'wp-front-end-editor' )

    3 – edit .po and .mo files and put it in /languages

    Voilà,

    Thanks !

Viewing 15 replies - 61 through 75 (of 79 total)