Forum Replies Created
-
AuthorPosts
-
Hello,
I have the same problem, my Quick CSS is empty and I use the Enfold Child Theme.
Best regards,
NeverlandsHi Isamel,
many thanks – it works perfectly now!
Is this the code I have found in the functions.php of the child theme?:
/* Einträge Slider aktiven Beitrag ausblenden */ add_filter('avia_post_slide_query', 'avf_custom_post_grid_query'); function avf_custom_post_grid_query ( $query ) { if(is_singular('post')) { global $post; $query['post__not_in'] = array($post->ID); } return $query; }
Do I have to take care about something with the next Enfold theme update?
Best regards,
NeverlandsHi Ismael,
thanks for your reply!I changed the css sizes the following way, so that I get a 16:9 format, also adjustet the timeline line and regenerated the thumbnails:
/* Blog View single-small Thumbnails & Timeline & Overlay */ .small-preview { width: 195px !important; height: 100px !important; line-height: 195px !important; } .post_author_timeline { right: 99px !important; } div.blog-meta .image-overlay .image-overlay-inside { top: -3px !important; } div.blog-meta .rounded-container .iconfont, .small-preview .iconfont { font-size: 30px !important; top: -48px !important; }
That’s what I wanted – thank you very much!
Best regards,
NeverlandsHi Victoria,
thanks for the code!
Unfortunately it did not change anything.
More details in the private data..Best regards,
NeverlandsH Victoria,
thanks for your reply!
You find the admin access in the private data.Best regards,
NeverlandsSorry, totally forgot to write in English.. You can delete the one above.
I have a question concerning the “Post Slider”.
I have several posts wihtin the category “X”. Each of those posts has a “Post Slider” that shows all posts from category “X”.
Unfortunatley the “active” post is also shown in the slider – what can I do that only the other posts of the category are shown but not the active one?Many thanks,
NeverlandsHi Mike,
thanks for your reply.
Well I will see what I can find out.. in the meanwhile you can close the topic.Thanks,
NeverlandsDo have any hint, what causes those plugins to block the menu editor?
Best regards,
NeverlandsHi Mike,
thanks for your reply.
I did as you said and I was able to find two plugins that cause the issue:WooCommerce Cash On Pickup
WooCommerce COD AdvancedBest regards,
NeverlandsHi Victoria,
thanks for your reply.
I’ll try to fix it via CSS.
You can close the topic, thanks.Best regards,
NeverlandsHi Victoria,
thanks for your reply.
Here are the credentials.Best regards,
NeverlandsHi Ismael,
thanks for your reply.
I found out that Encyclopedia uses taxonomy-encyclopedia-tag.php for the tag pages.You can mark the topic as closed.
Best regards,
NeverlandsHi Ismael,
thanks for your reply.
The solution with the archive-encyclopedia.php template works very well!
If I needed a new template for the encyclopedia tags would I have to copy the tag.php?
I tried this but it didn’t change anything.Thanks and best regards,
NeverlandsFor this is not a Relevanssi issue you can close this topic.
I made a new post: Excluding categories from archive but not from tag archive pagesThanks and best regards,
NeverlandsMay 6, 2017 at 10:01 am in reply to: Excluding categories from archive but not from tag archive pages #788769Hi John,
thanks for your reply.
Maybe I didn’t explain clearly what I want to do.Using the default archive page I only want to show posts of the top level categories and exclude posts of child categories.
I am not sure if tag archive pages use the same archive.php.
Because excluding a child category with Simply Exclude from archives, its posts also stop showing up in its own archive and in tag archive pages. So using Simply Exclude doesn’t seem to be the right solution.Top Level Category
– – Child CategoryOn the archive htttp://www.example.com/top-level-category I only want to retrieve the posts of the top level category.
On a page with a tag cloud I have tags from posts of the child category. Clicking on a tag link which should return 5 posts of the child category there are no results.Is there a filter that makes archive pages only show top level category posts and hides posts of child categories?
Best regards,
NeverlandsHi Nikko,
Until now we have the issue with two sorts of clients:
Windows Surface Pro (Tablet) and Lenovo Yoga (Laptop) with OS Windows 10 and a screen resultion of 1920 x 1080px.There we can see the stripes on both Firefox and Chrome Browser.
Hi Yigit,
Thanks for your reply.
I checked the image – there is no stripe on it..
Also the stripe is not visible on devices with less resolution.I now was able to find out the difference concerning the News posts between dev and livesystem.
It has nothing to do with the Relevanssi Search plugin.We didn’t want the News posts to show up in the “Über Uns” archive page so I had to install the plugin Simply Exclude to exclude the News posts from archives.
This is why they don’t show up in the tag archive pages.Is there maybe another way to not show the News posts on the “Über Uns” archive page but in the tag archive pages?
Hi,
Unfortunatley I cannot switch to a default theme at the moment because this is the livesystem.
The devsystem hast exactly the same Relevanssi settings but shows the results for the news tags.
I cannot see what makes the difference.Hi Ismael,
thanks for your reply!
By saying plugin support forum, you mean the Recommended Plugin Section?
Here are the login details.Best regards,
NeverlandsHello mensmaximus and Basilis,
the solution works perfectly!
Thanks alot and best regards,
NeverlandsHi mensmaximus,
propably this makes the difference.
As I mentioned in the beginning, sidebars are deactivated in the Enfold Child theme settings, because I don’t use them anywhere else.Hi mensmaximus,
many thanks, but this doesn’t change anything
Hi mensmaximus,
thanks for your reply!
I tried this but it doesn’t work:add_filter('avf_custom_sidebar','add_sidebar_to_posttype'); function add_sidebar_to_posttype($sidebar) { if( $post_type == 'encyclopedia' ) { $sidebar = "Glossar"; } return $sidebar; }
Hello Rikard,
yes, you can mark this thread as solved :)
Many thanks!
Concerning the changing of the colour of the .avia-menu-text I will open a new one.Best regards,
NeverlandsPS
If I keep /druckerei-wien/news as a post with the function filter mentioned above the navigation buttons are displayed as they should but on each post that is not fullwidth. I only need the navigation buttons on the news posts within the category “druckfrische-news” .
You can see it on the livesystem.With these settings I only needed a function filter that sets all posts that are not in the category “druckfrische-news” to css:
#top .avia-post-nav { display: none; }
Unfortunately I am not sure how to set up that filter.HII Rikard,
I used a page because I need the URL path to be /druckerei-wien/news.
I don’t know how to manage that with a page. Do you have a tip how I can get this path with a page?In the devsystem I changed the post in a page now.
With this code in funtions.php the navigation works fine:/* Set Avia Post Nav to only navigate between posts of the same category */ add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod'); function avia_post_nav_settings_mod($settings) { $settings['is_fullwidth'] = false; $settings['same_category'] = true; return $settings; }
I have two other questions:
1. Is it possible to reverse the prev/next buttons – so that the previous button is on the right side?
2. Navigating through the main menu always changes the colour of the .avia-menu-textExample for the “Über Uns” menu:
.yellow-top:hover > a > .avia-menu-text { color: orange; } li[id*='menu-item'].category-yellow.active-parent-item > a > .avia-menu-text, li[id*='menu-item'].yellow-top.current-menu-item > a > .avia-menu-text { color: orange; } li[id*='menu-item'] .category-yellow > a { background-color: rgba(255, 165, 0, 0.85) !important; border-color: transparent !important; } li[id*='menu-item'] .category-yellow > a:hover { background-color: rgba(247, 184, 49, 0.85) !important; } #mobile-advanced .yellow-top > a > .avia-menu-text, #mobile-advanced li .category-yellow > a, #mobile-advanced li .category-yellow > a:hover { color: orange; }
How can I manage to change the colour of “Über Uns” when navigating through the News posts which have the path/URL /druckfrische-news/..?
Many thanks and
best regards,
NeverlandsHello Rikard,
the account is now activated.Many thanks,
NeverlandsHello john,
could you please try it again now?
Best regards,
NeverlandsHi Rikard,
thanks for your reply.
Here are the credentials.Best regards,
Neverlands- This reply was modified 7 years, 7 months ago by John Torvik.
-
AuthorPosts