Remove Author from Home Page

Home Forums Legacy Support Support queries Styling issues Remove Author from Home Page

Tagged: 

Viewing 15 posts - 1 through 15 (of 18 total)
  • Author
    Posts
  • #123767
    sumit
    Spectator
    I want to do these things 1. Remove author name from home page. Ref http://jmp.sh/rDIIJJa 2. Remove Students. Ref http://jmp.sh/YNZSNoD , http://jmp.sh/YfV4oL5 3. rename course from everywhere. http://jmp.sh/zpdHWQh 4. Rename "course-cat" URL of course category 5. Display "Course Categories" on homepage like "Courses" are displayed on home page
    #123939
    Anshuman Sahu
    Keymaster
    1. Please goto wp-admin -> lms -> settings -> general -> enable : " Disable Instructor display in Courses " . refer : http://prntscr.com/g5wags 2. please add this given css in your wp-admin-> apperance-> customize -> custom css  : .students {     display: none !important; } 3. please refer this tip : https://vibethemes.com/documentation/wplms/knowledge-base/translate-using-loco-translate-plugin/ those strings are in wplms theme ,vibe course module plugin and vibe customtypes plugin . To change courses from url edit the all courses page slug  and its title from back end edit page screen . refer : http://prntscr.com/g5wdc7  for permalink of course you can set it to custom permalinks from wp-admin -> settings-> permalinks . 4. you can also set course-cat  to custom permalink from wp-admin -> settings-> permalinks . 5.  Use course category carousel block in vibe page builder . Refer : http://prntscr.com/g5wenx
    #124165
    sumit
    Spectator
    Please help me regarding the following issue 1. In Mega Menu number of columns are maximum 5, I want to customize the number of columns like 7, 8 ,10  etc as my requirement. How to do this. 2. Tabs in Filterable posts are by default Left Aligned. How can I change the alignment to centre? http://prntscr.com/g6jv48 3.How to add "Add to Cart" button in Grid Post or Filterable post box? http://prntscr.com/g6jvzz 4. How to remove padding of Menu. http://prntscr.com/g6jwu8 5. How to rename this and add custom text. http://prntscr.com/g6jxx4
    #124310
    H.K. Latiyan
    Participant
    Hi, 1) Sorry this is not available as of now, we have added maximum 5 columns by keeping in mind the desktop screens. 2) The filterable posts are adding from page builder so you can adjust it by using the appropriate columns. For example you can add an empty 1/3 column on the left and then add the filterable posts block. 3) Please refer this tip: https://vibethemes.com/documentation/wplms/knowledge-base/adding-add-to-cart-button-on-course-featured-block/ 4) Well this mainly depends on the website logo, if the logo is large then it shows more padding at the bottom. For this I'll have to check your website, so please share the website url to check this. 5) You can change any text in wplms, refer the previous reply by Alex, he has provided the link to a tutorial of loco translate plugin. Use this plugin to change the text . The string is present in the vibe course module plugin.
    #124336
    MrVibe
    Keymaster
    This reply has been marked as private.
    #124337
    MrVibe
    Keymaster
    2. Try this : https://vibethemes.com/documentation/wplms/knowledge-base/how-to-add-courses-filterable-tabs-from-oneinstructor-theme/ 3. Nothing to worry about. Set a default menu at WP Admin - Apperance - Menus - Locations - Top menu. 4. The logo padding is adjusted from the menu padding which you set at WP Admin - Appearance - customizer - Header - Menu height area. 6.  Check if you have enable Student specifc menus at WP Admin - LMS - Settings, https://vibethemes.com/documentation/wplms/knowledge-base/student-and-instructor-specific-menus/
    #124338
    sumit
    Spectator
    This reply has been marked as private.
    #124353
    sumit
    Spectator
    Please help on this || Urgent <span style="color: #4b4d4d; font-family: Lato; font-size: 14px;">3.How to add "Add to Cart" button in Grid Post or Filterable post box? http://prntscr.com/g6jvzz</span>
    #124467
    H.K. Latiyan
    Participant
    This reply has been marked as private.
    #124475
    sumit
    Spectator
    3. Still unable to insert "add to cart button" in course featured like this https://prnt.sc/g6jvzz   I followed this https://vibethemes.com/documentation/wplms/knowledge-base/adding-add-to-cart-button-on-course-featured-block/ tutorial and added the above code in wp-admin>plugin>editor>wplms-customizer.php It shows error after saving the plugin This plugin has been deactivated because your changes resulted in a fatal error Parse error: syntax error, unexpected 'global' (T_GLOBAL) in /var/www/html/wp-content/plugins/wplms-customizer/wplms-customizer.php on line 46 My file after adding the code <?php /* Plugin Name: WPLMS Customizer Plugin Plugin URI: http://www.Vibethemes.com Description: A simple WordPress plugin to modify WPLMS template Version: 1.0 Author: VibeThemes Author URI: http://www.vibethemes.com License: GPL2 */ /* Copyright 2014 VibeThemes (email : [email protected]) wplms_customizer program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License, version 2, as published by the Free Software Foundation. wplms_customizer program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with wplms_customizer program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */ include_once 'classes/customizer_class.php'; #added #added if(class_exists('WPLMS_Customizer_Plugin_Class')) { // instantiate the plugin class $wplms_customizer = new WPLMS_Customizer_Plugin_Class(); } add_filter('wplms_course_thumb_extras','add_add_to_cart_link_course_block'); function add_add_to_cart_link_course_block($html){   global $post;   $product=get_post_meta($post->ID,'vibe_product',true);   if( !empty($product) && is_array( $product)){     foreach( $product as $p){       $html.=do_shortcode('[add_to_cart id="'.$p.'"]');     }   }elseif(!empty($product) ){      $html.=do_shortcode('[add_to_cart id="'.$product.'"]');   }   $html.='<style>.courseitem p.product.woocommerce.add_to_cart_inline {     border: none !important;   }</style>';   return $html; } I also tried to add the particular code after include_once 'classes/customizer_class.php'; But it also showed same error
    #124482
    H.K. Latiyan
    Participant
    Hi, Try adding the code at the end of the wplms-customizer.php file.  
    #124483
    sumit
    Spectator
    Tried. Same error. I've shared my wp-admin details. can you guys please do this for me. I've been trying this since last week but getting errors
    #124492
    sumit
    Spectator
    How to remove this http://prntscr.com/g7a3y7
    #124527
    H.K. Latiyan
    Participant
    Hi, I have added the code in your website to add the cart button in featured block and to remove the students icon from it, refer: http://prntscr.com/g7io66
    #124538
    sumit
    Spectator
    Thaks for this help How did you do this please tell me and how do I change the color of "Add to Cart" button? How do I remove the bottom footer?
Viewing 15 posts - 1 through 15 (of 18 total)
  • The topic ‘Remove Author from Home Page’ is closed to new replies.