Viewing 23 posts - 1 through 23 (of 23 total)
  • Author
    Posts
  • #292515

    Hi.

    We use enfold for our main site, its amazing!

    We are wanting to build an online course web site with it, just wondered what plug in you guys recommend that works best with the theme and woo commerce, i have seen Sensi?

    #292588

    Hi midischool!

    You can try Sensei: http://www.woothemes.com/products/sensei/ – I provided some template files here: https://kriesi.at/support/topic/woothemes-sensei-plugin/ . Afaik you can ask for a refund (for 30 days) if the plugin doesn’t work for you.

    Cheers!
    Peter

    #292743

    Great, how do i install your templates?

    #292985

    Hey!

    Please download the files Peter pointed out and replace them with the ones inside Sensei/templates. Then add Sensei folder inside Enfold folder

    Best regards,
    Yigit

    #293182

    So i have put peters files in the /Sensei/templates.

    Then do you mean put the same “Sensei Folder” that has peters files in to the enfold folder?

    Or peters empty “sensei” folder that had the files in , into Enfold?

    Or move the “sensei folder” from the plug in folder called “sensei” and put that in enfold?

    Thanks

    #293550

    Hi!

    You need to copy the sensei folder into the theme folder (wp-content/themes/enfold/sensei).

    Regards,
    Peter

    #295149
    This reply has been marked as private.
    #295209

    Hey!

    You should replace downloaded files inside Sensei folder from plugin first and then move that modified Sensei folder into Enfold folder

    Cheers!
    Yigit

    #295227

    This is all we need to do to fix the template. Thank you Peter. I am getting a bit confused with your answers though Yigit.

    Hi!

    You need to copy the sensei folder into the theme folder (wp-content/themes/enfold/sensei).

    Regards,
    Peter

    However, videos that are placed in the video embed section on lessons are not showing. If the theme is switched to twenty14, they are showing correctly.

    How can i fix this please?

    • This reply was modified 10 years, 4 months ago by mmsdev.
    #295480

    Hi!

    Can you post a link to a lesson page please? Not sure why the video doesn’t work.

    Cheers!
    Peter

    #295675
    This reply has been marked as private.
    #295819

    Hey!

    Yes please. Unfortunately the video code is completely missing in the html code and I need to check the Sensei templates and configuration.

    Cheers!
    Peter

    #296146
    This reply has been marked as private.
    #296179

    Hey!

    1) It works now. I just had to update the template of the single lessons ( content-single-lesson.php ). I copied the template from the sensei folder into the theme folder.

    2) No sidebar options, etc. are not supported. You can definitely add them but this would require advanced templates for sensei. Officially we don’t support this plugin (but just woocommerce, bbpress and WPML) and thus this customization is beyond the scope of our support forum. I recommend to hire a freelancer for this job.

    3) The comments also work now. Probably the new template solved the issue.

    Cheers!
    Peter

    #296282
    This reply has been marked as private.
    #296429

    Hi!

    1) I uploaded the files here: https://www.mediafire.com/?4xvw8la68gv824t

    2) You just need to unzip the sensei.zip file and upload the unpacked sensei folder into the wp-content/themes/enfold/ folder.

    3) Yes, if you use the automatic theme update feature of wordpress. No if you update the theme files with ftp (just overwrite the existing theme files on your server): https://vimeo.com/channels/aviathemes/67209750

    4) I added this code into the quick css field to fix the comments styling:

    
    #top.single-lesson #comments{ clear: both; padding-top: 20px; }
    
    

    5) I noticed someone added php code into the quick css field – that’s not possible. You can place the php code into the enfold/functions.php file or child theme functions.php file but the quick css field will not execute or accept any php code. For reference I attached the php code below…

    
    // dave add published comments.
    add_action('sensei_single_main_content', 'dc_add_comments_to_template');  
     
    function dc_add_comments_to_template() {
    	//Gather comments on the post 
    	$comments = get_comments(array(
    		'post_id' => get_the_ID(),
    		'status' => 'approve' //Change this to the type of comments to be displayed
    	));
     
    	//Display the list of comments
    		
    	echo '<div class="entry-comments"><ul>';
    		
    	wp_list_comments(array(
    		'per_page' => 10, // Allow comment pagination (optional)
    		'type' => 'comment', // Very important! Otherwise you get Woo's comments for some internal process.
    		'reverse_top_level' => false // Show the latest comments at the top of the list
    	), $comments);
    		
    	echo '</ul></div>';
    		
    }
    // end of dave's code
    

    Regards,
    Peter

    #296753

    Thanks but the LEAVE A REPLY has not changed??

    What i meant is, should it NOT say leave a reply unless there is already a message there?

    But the LEAVE A REPLY is there regardless of if there is a message there or not?

    #296830

    Hey!

    Yes, the “Leave a reply” headline will be displayed if the comments are activated. You can hide it with css but then it will be hidden even if some comments/messages already exist.

    Best regards,
    Peter

    #296916
    This reply has been marked as private.
    #297425

    Any further with this?

    4) I added this code into the quick css field to fix the comments styling:

    #top.single-lesson #comments{ clear: both; padding-top: 20px; }

    Some pages its working on some its not.

    http://dev.sheffielddogwalking.com/lesson/maschine-1-3/

    #297804

    Hey!

    Please elaborate – I just checked it and the styling looked ok for me. I also tried to post a comment: http://www.clipular.com/c/4986295067607040.png?k=5E33oeBikCvAjR5SCFGb0dUnYuw and the text “One Response to “Maschine 1.3”” and “Leave a Reply” always showed up below the Maschine 1.2, etc. links.

    Regards,
    Peter

    #298853

    Its ok i fixed it.

    Thanks for the support.

    #298868

    Hi!

    Great, glad it works now :)

    Cheers!
    Peter

Viewing 23 posts - 1 through 23 (of 23 total)
  • The topic ‘Enfiold and learning plug ins’ is closed to new replies.