Home › Forums › Legacy Support › Support queries › Styling issues › Remove Author from Home Page
Tagged: design
- This topic has 17 replies, 4 voices, and was last updated 7 years, 3 months ago by H.K. Latiyan.
-
AuthorPosts
-
August 6, 2017 at 11:04 pm #123767sumitSpectatorI 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 pageAugust 8, 2017 at 2:11 pm #123939Anshuman SahuKeymaster1. 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/g5wenxAugust 9, 2017 at 10:41 pm #124165sumitSpectatorPlease 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/g6jxx4August 10, 2017 at 1:15 pm #124310H.K. LatiyanParticipantHi, 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.August 10, 2017 at 4:19 pm #124336MrVibeKeymasterThis reply has been marked as private.August 10, 2017 at 4:24 pm #124337MrVibeKeymaster2. 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/August 10, 2017 at 4:39 pm #124338sumitSpectatorThis reply has been marked as private.August 11, 2017 at 1:06 am #124353sumitSpectatorPlease 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>August 11, 2017 at 2:12 pm #124467H.K. LatiyanParticipantThis reply has been marked as private.August 11, 2017 at 2:25 pm #124475sumitSpectator3. 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 errorAugust 11, 2017 at 2:33 pm #124482H.K. LatiyanParticipantHi, Try adding the code at the end of the wplms-customizer.php file.August 11, 2017 at 2:35 pm #124483sumitSpectatorTried. 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 errorsAugust 11, 2017 at 3:28 pm #124492sumitSpectatorHow to remove this http://prntscr.com/g7a3y7August 12, 2017 at 6:35 am #124527H.K. LatiyanParticipantHi, 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/g7io66August 12, 2017 at 8:21 am #124538sumitSpectatorThaks 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?
-
AuthorPosts
- The topic ‘Remove Author from Home Page’ is closed to new replies.