Forum Replies Created
-
AuthorPosts
-
I put it into the footer using the plugin “insert headers and footers” but it seems not to be working. any other solution?
Hi Mike it seems not to be working. Can you check it for me please?
Sorry. I did it and everything seems to be ok :-)
in mobile version however the borderline of the text email is still bigger than others can you check it?
Ok now it’s working I don’t know what was wrong. Thank you very much!!!
This reply has been marked as private.I did it. But it seems not to work.
Ok for video I understood. What about the border of the text items in contact form at http://www.lmjproduction.ch/contatti/? Can I have it smaller than now. Thanks Gianluca from Italy.
This reply has been marked as private.I alreeady set it but it does not work. Please see this post: https://www.rimedical.it/news/dolore-cronico-combatterlo-con-agopuntura/ and sharing buttons too are invisible. Thanks
In private content you can find it again.
Hi Victoria I gave you access to the site, didn’t you find it?
Are you talinkg about WooCommerce or Enfold? Where can I find it?
I saw Small Thumb Gallery in that page, but gallery doesn’t run automatically
for sure, i would like that the gallery that you can see here http://www.mfm.it/demo/events/il-giro-del-mondo-attraverso-gli-scatti-firmati-pino-settanni/ start automatically, is it possible?
Hi Ismael
great job, it works perfectly.
Wonderful :-)))Unfortunately Not yet, see the page http://www.mfm.it/demo/category/deluxe/
Thanks for your reply, I tried the only one free at the momentbut it doesn’t work :-(
as you can see at http://www.mfm.it/demo/category/beauty/
there is the basic enfold pagination still
did i miss any configuration step?Navigation Selector nav.navigation
Next Selector nav.navigation a.next
Item Selector article.post
Content Selector #mainSorry again but it doesn’t work as you can see at http://www.mfm.it/demo/
I added the code:add_filter(‘get_the_terms’, ‘hide_categories_terms’, 10, 3);
function hide_categories_terms($terms, $post_id, $taxonomy){// define which category IDs you want to hide
$excludeIDs = array(6960, 7097);// get all the terms
$exclude = array();
foreach ($excludeIDs as $id) {
$exclude[] = get_term_by(‘id’, $id, ‘category’);
}// filter the categories
if (!is_admin()) {
foreach($terms as $key => $term){
if($term->taxonomy == “category”){
foreach ($exclude as $exKey => $exTerm) {
if($term->term_id == $exTerm->term_id) unset($terms[$key]);
}
}
}
}return $terms;
}where 6960 and 7097 are the IDs of categories TOP & DISCOVER but as you can see those taxonomies are still visible.
Please help me. Thanks Gianluca
Hi, I’ve read and understood that i have to put in my functions.php thise code is it right?
add_filter(‘get_the_terms’, ‘hide_categories_terms’, 10, 3);
function hide_categories_terms($terms, $post_id, $taxonomy){// define which category IDs you want to hide
$excludeIDs = array(6);// get all the terms
$exclude = array();
foreach ($excludeIDs as $id) {
$exclude[] = get_term_by(‘id’, $id, ‘category’);
}// filter the categories
if (!is_admin()) {
foreach($terms as $key => $term){
if($term->taxonomy == “category”){
foreach ($exclude as $exKey => $exTerm) {
if($term->term_id == $exTerm->term_id) unset($terms[$key]);
}
}
}
}return $terms;
}But where do I have to set the IDs of the categories (such as 34, 45) ?
Thanks again Gianluca
Hi, here is my site: http://www.rimedical.it/news/dieta/obesita-e-sovrappeso-non-basta-lindice-di-massa-corporea-per-definire-la-malattia/
As you can see related posts still exists in footer.
I tried:
.related_posts {
display: none;
}
and also
.related_posts {
display: none !important;
} -
AuthorPosts