Free WP TP
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sparkling] Can't get to work properlyI have replied to you on your following topic.
https://colorlib.com/wp/forums/topic/cant-get-to-work-properly/
Forum: Themes and Templates
In reply to: [Activello] Static homepage creationI am not sure what you meant by “the last articles page as homepage” so please make it a bit clear.
Also share some screenshots and your site URL where you have made these changes so that i can better understand it and help you.
I would like to hide from the homepage the articles shown in the slider. Is that possible ?
You can try achieving this by using the following custom code as described here https://colorlib.com/wp/forums/topic/suppress-slider-on-posts-page/#post-24989
function exclude_category( $query ) { if( ! is_category() && get_theme_mod('activello_featured_hide') == 1 ){ $slidecat = get_theme_mod( 'activello_featured_cat' ); if ( $query->is_main_query() ) { $query->set( 'cat', '-'.$slidecat ); } } } add_action( 'pre_get_posts', 'exclude_category' );Forum: Themes and Templates
In reply to: [Travelify] post "last updated" date instead of published dateIf you are already using the child theme of travelify theme then just add the below code in the end of functions.pgp file of your child theme.
/** * Prints HTML with meta information for the current post-date/time and author. */ function travelify_posted_on() { $time_string = '<time class="entry-date published updated" datetime="%1$s">%2$s</time>'; if ( get_the_time( 'U' ) !== get_the_modified_time( 'U' ) ) { $time_string = '<time class="entry-date published" datetime="%1$s">%2$s</time>'; } $time_string = sprintf( $time_string, esc_attr( get_the_modified_date( 'c' ) ), esc_html( get_the_modified_date() ) ); $byline = sprintf( '<span class="author vcard"><a class="url fn n" href="' . esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ) . '">' . esc_html( get_the_author() ) . '</a></span>' ); echo '<span class="byline"> ' . $byline . '</span><span class="posted-on">' . '<a href="' . esc_url( get_permalink() ) . '" rel="bookmark">' . $time_string . '</a>' . '</span>'; }You are most welcome π
The navigation bar is not fixed when viewed on mobile because on mobile devices the responsive navigation menu is displayed and it’s not necessary to make it fixed so this functionality is skipped in the provided code.
Forum: Themes and Templates
In reply to: [Travelify] Remove posts from homepage – Travelify ThemeYou are most welcome π
When I click from “Home” to “Arbeiten im Objekt”, “Arbeiten am Objekt”, “Allgemeine Arbeiten” or “Wir ΓΌber uns”, the entire Header row including the Logo image and the navigation jumps to the right, clicking from one of these pages back to “Home” it jumps back to the left.
I don’t find these menus except Home on your shared site.
Please advise.
Forum: Themes and Templates
In reply to: [Sparkling] Text editor doesn't workHi Erik,
Sorry to hear of the problem you are having.
Is it working fine for you if you use any default WordPress theme like Twenty Fifteen?
This can be due to plugin conflict on your site so please try temporary deactivating all plugins and see whether everything works fine and then enable the plugins one by one to see which plugin is conflicting if any.
If it’s not the theme or plugin issue then it must be your WordPress install issue so try reinstalling it.
Best Regards,
MovinForum: Themes and Templates
In reply to: [Sparkling] Showing mix up coding in page sourceYou are most welcome π
Forum: Themes and Templates
In reply to: [Activello] Static homepage creationHi @evallad,
I hope you are well today and thank you for your question.
To make it clear i want to ask you that whether you are trying to achieve the home page as following?
https://colorlib.com/activello/
Kind Regards,
MovinForum: Themes and Templates
In reply to: [Activello] Footer MenuHi @ksrostad,
I hope you are well today and thank you for your question.
Currently the Activello theme does not support secondary menu into the footer but you can try achieving this by creating a child theme of Activello theme and then develop custom code in this child theme to display secondary menu into the footer by referring the information provided on below pages.
https://codex.wordpress.org/Function_Reference/register_nav_menu
https://developer.wordpress.org/reference/functions/wp_nav_menu/Best Regards,
MovinForum: Themes and Templates
In reply to: [Activello] More changes to the layout of the homepageYou are most welcome π
Forum: Themes and Templates
In reply to: [Activello] GalleryYou are most welcome here π
Forum: Themes and Templates
In reply to: [Activello] HTML numbersI hope you are well today and thanks for helping out here in this forum.
Your help here is really appreciated.
Forum: Themes and Templates
In reply to: [Travelify] Remove posts from homepage – Travelify ThemeI visited your shared site but didn’t see any posts beneath the slider image and only getting footer text as shown in the below screenshot.
Forum: Themes and Templates
In reply to: [Travelify] post "last updated" date instead of published dateTo achieve this we will replace published date with modified date in the webpage markup and will remove the modified date markup so that the search engine will take modified date assuming it is published date.
You can try achieving this by using the following shared custom child theme of Travelify theme that contains some custom code.
https://drive.google.com/file/d/0B7X-aZPqO9LzUjVROVBtUGUxem8/view?usp=sharing