Tagged: x
-
AuthorPosts
-
April 18, 2016 at 10:13 am #888430
Bob MParticipantI have created a sidebar called posts. I checked the category “Construction Talk” but when I create a new post in that category, I still have to manually add it to the sidebar by checking the post title.
Also, How can I remove the delay of the grids appearing. I have disabled animation but there is still a delay.
http://www.newmanbc.com/completed-projects/
Thanks
April 18, 2016 at 11:31 pm #889248
RupokMemberWould you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / password
– FTP credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
April 19, 2016 at 8:51 am #890073
Bob MParticipantThis reply has been marked as private.April 19, 2016 at 4:38 pm #890828
NicoModeratorHi There,
In regards to the delay, not sure if there is a delay. Would you mind sharing us a screenshot or a short video of the delay that you want to show to us.
And for the sidebar category construction talk, Would you mind testing deactivating X theme if the problem still exist or plugin test conflict. You can do this by deactivating all third party plugins, and seeing if the problem remains. If it’s fixed, you’ll know a plugin caused the problem, and you can narrow down which one by reactivating them one at a time.
Let us know how it goes.
Thanks.
April 21, 2016 at 4:07 am #893313
Bob MParticipanthttp://www.newmanbc.com/completed-projects/ and http://www.newmanbc.com/blog/
These are the pages where the delay is obvious to me. Everything on the page appears immediately. The tiles appear visibly after everything else. In the next couple of days, I’ll take the steps you mentioned to try and troubleshoot the sidebar issue.
Please have another look.
Thanks
April 21, 2016 at 11:14 am #893945
ChristianModeratorHey Bob,
I’m sorry but I couldn’t see the delay on my end. Could you reduce the number of posts showing up in your portfolio and blog then test again?
Regarding the sidebar, sorry for the confusion. Checking the taxonomy will not display the sidebar for the posts with the category. You will need to manually check the post. The reason for that is because you can select multiple categories per posts and the dynamic sidebar only allows one sidebar to display. Selecting the taxonomy will display the sidebar in the category page if you chose to display a sidebar for archive pages in the Customizer.
Hope that clarifies.
April 22, 2016 at 5:01 pm #895963
Bob MParticipantThat’s very disappointing . The person that does the blogging/posts for this site doesn’t have admin rights and doesn’t know anything about wordpress. It’s a big inconvenience for me to have to go back and add it every time she makes a new post. Is there a way to select all posts?
April 24, 2016 at 12:34 am #897147
RadModeratorHi Bob,
Sidebars are part of the design which only admin can manage by default. But, it still possible with custom development, I’ll provide some idea, but I can’t provide the coding. It’s best to consult it to a developer
1. Add custom field or post meta box for posts that will allow a user (non-admin) to choose the sidebar to display
Example, let’s say she added post_sidebar as custom field, and the value is the sidebar ID.
This is easy, but to make it more user-friendly, then post meta box is recommended so she won’t need to add ID manually. The sidebar ID is available when you create a custom sidebar at Admin > Appearance > Sidebars
2. Use WordPress’s filter too hook on ups_sidebar to display user’s assigned sidebar.
Example,
add_filter('ups_sidebar', 'custom_post_sidebar', 99); function custom_post_sidebar ( $sidebar ) { if( is_singular('post') ) return get_post_meta ( get_the_ID(), 'post_sidebar', true); return $sidebar; }That’s it 🙂 , if you’re not sure about this then it’s best to consult it to a developer.
Thanks for understanding.
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-888430 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
