1 I cannot use icons in the footer collout, I use the code .fa-phone or .fa-heart for instance, I insert it in the right space of Theme Settings (Footer Collout Icon 1), but it doesn’t work. Even if I insert it in a page/post text works.
2 I would avoid to publish a specific posts category in the “blog page”. In my website, The posts of the “articoli” post category doesn’t must appear in the blog default page “di cosa mi occupo”. How to do it?
3 Thanks to the new GDPR policy, i need to add an acceptance checkbox in my form. I use contact form 7 plug in. The checkbox is almost invisible and people visiting my website couldn’t see it. How to add a checkbox more visible?
Thanks and best regards
]]>I tried to add function in functions.php –
function my_home_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( 'cat', '3');
}
}
add_action( 'pre_get_posts', 'my_home_category' );
but nothing… it doesn’t works.
any ideas?
Thanks
]]>How can I edit this so I get posts via
.
I want to display only the ‘latest’ category posts on my static home page, by temporarily categorizing them as ‘latest’.
]]>https://www.ads-software.com/plugins/wc-shortcodes/
]]>Need help from some wordpress gurus out here,
I need to exclude certain category’s listed on a post’s category list.
Meaning if a post is categorized in “Language -> English” & “Pages -> Short”,
but I have other Genre’s that’s it’s also listed in,
hence when the post’s category list comes out,
it’ll show category: English, Short, Action, Drama, Sci-Fi, Movies, Etc,
I would like to exclude the “English” & “Short” from the full list,
and display it in another tab where I can make a new line stating “Language: English” “Length: Short”,
how do I get about this?
I’m currently using this code to display my categories:
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ‘, ‘, ‘twentyeleven’ ) );
/* translators: used between list items, there is a space after the comma */
$tag_list = get_the_tag_list( ”, __( ‘, ‘, ‘twentyeleven’ ) );
if ( ” != $tag_list ) {
$utility_text = __( ‘%1$s’, ‘twentyeleven’ );
} elseif ( ” != $categories_list ) {
$utility_text = __( ‘This entry was posted in %1$s by %5$s. Bookmark the permalink.’, ‘twentyeleven’ );
} else {
$utility_text = __( ‘This entry was posted by %5$s. Bookmark the permalink.’, ‘twentyeleven’ );
}
printf(
$utility_text,
$categories_list,
$tag_list,
esc_url( get_permalink() ),
the_title_attribute( ‘echo=0’ ),
get_the_author(),
esc_url( get_author_posts_url( get_the_author_meta( ‘ID’ ) ) )
);
?>
Thanks.
]]>thank you
my site https://www.wheretocampin.com
]]>I am looking for a plugin that will list posts by category with a image from the specific post.
The only good example I can find is this site, https://www.mommymandy.com
]]>I only define ONE category to each article!
]]>