lmxc
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Show Posts] WPShowPosts list remove Author linksI realized I could comment the link in
wp-content/plugins/wp-show-posts/inc/functions.php at line64:
<!––>
<span class=”author-name” itemprop=”name”>%3$s</span>
<!––>Forum: Themes and Templates
In reply to: [Agama Blue] Frontpage won’t display PostsI think I did it in your theme customization:
General -> Static Front Page -> Homepage shows
I set Latest Posts and Static Page is disabled..
(Agama BlueVersion: 1.0.8 – AgamaVersion: 1.3.1.2)
RegardsForum: Themes and Templates
In reply to: [Agama Blue] Breadcrumb full “path” for SubPagesHello,
I tried this for single pages and it is working:
in wp-content/themes/agama/framework/class-agama-breadcrumb.php
at line 73 was
/**
* Is Single or Is Page
*
* @since 1.2.9
*/
private static function is_single_or_page() {
global $post;
$h1 = sprintf( ‘<h1>%s</h1>’, $post->post_title );
$output = sprintf( ‘<li class=”active”>%s‘, $post->post_title );self::html_markup( $h1, $output );
}
and I changed to
private static function is_single_or_page() {
global $post;
if (!empty($post->post_parent)) {
$h1 = sprintf( ‘<h1>%s</h1>’, $post->post_title );
$output = sprintf( ‘<li class=”active”>%s‘, get_the_title($post->post_parent) ).sprintf( ‘<li class=”active”>%s‘, $post->post_title );
self::html_markup( $h1, $output );
} else {
$h1 = sprintf( ‘<h1>%s</h1>’, $post->post_title );
$output = sprintf( ‘<li class=”active”>%s‘, $post->post_title );self::html_markup( $h1, $output );
}
}Merry Christmas and Happy New Year !
Forum: Themes and Templates
In reply to: [Agama Blue] Breadcrumb full “path” for SubPagesThank you, in the meantime if I will be able to implement a solution I will publish it here.
RegardsForum: Themes and Templates
In reply to: [Agama Blue] Contact form in homepageYes indeed, but that way I would loose Slider and Blogs on Homepage..
Another solution could be to publish my Contact form in ‘Main Sidebar’ and hiding ‘Main Sidebar’ in all pages except Home page:
changing in agama-blue/sidebar.php line
<?php if ( is_active_sidebar( ‘sidebar-1’ ) && ! is_home() ) : ?>
to this
<?php if ( is_active_sidebar( ‘sidebar-1’ ) && is_home() ) : ?>
Thank youForum: Themes and Templates
In reply to: [Agama Blue] Contact form in homepageHello, I put my ‘Contact widget’ on ‘Main Sidebar’, but the result is only on Pages and Articles.
I would like to publish a Contact form only on homepage and not on Pages and Articles..
Thank youForum: Themes and Templates
In reply to: [Agama Blue] Contact form in homepageThank you for your reply, I am a little bit confused because I have not a ‘Home Sidebar’ area like in step 6, only one ‘Main Sidebar’ (posts and pages) and 4 ‘Footer Widget’ areas.
Perhaps anything missing in my Agama blue installation?
Thank you