Based on the fact that this has been exploited for many years, I have to ask that my purchase be refunded there is no way I will deploy this.
I did indeed find how to do that, and this helps a lot! I might be able to work with things and see where we go… If we deploy it, ill make sure we let you use it in your showcase.
[Question Deleted]
-
This reply was modified 2 years by
sjgold.
I am very tempted to contact theme forest for a refund, it will depend on the answer to the width question.
I’m quite disappointed in the theme so far, I dont think it has any improvement over the theme I currently use, which has 2+ years of customization and tweaking. I was hoping for something more modern, but some things about this theme are absolutely backwards
-
This reply was modified 2 years by
sjgold.
I have found the website manager.
The fact that there are not “themes” applied to the demo templates is disappointing.
At the very least a dark and light theme… So far not at all happy with what I am seeing.
I will use a static page, I was showing you it should work.
The fact that you do not support standard WordPress loops is pretty much a reason to ask for a refund. I showed you that I can not even get JUST the custom posts in the blocks.
Do you have any code that would work for your loops? How would I get just the Custom posts to show up?
Where is this website manager???
This question seems similar to the problem I am having.
Maybe just put in the correct terminology.
Let me try to explain with images…
So the first image shows what I refer to as the query loop and the results it gives. As you can see the first post is the Warhammer post.
Then we changed the settings so the homepage is just the latest posts. You will note there are 2 posts above the Warhammer post, which is due to the custom posts that are generated from the YouTube API and pushed into WordPress. This is due to the code we inserted into the standard YouTube query that appends in the proper custom posts.
The query is shown in the last image and this is the standard way that you would do this according to WordPress. I believe that you are NOT generating the info in the blocks the standard way which is stupid if that’s the case. I assure you this is 100% why I bought the theme as you stand it will deal with custom posts… but your definition of custom posts is more custom fields like ACF would do.
Then I show you that it is pulling all categories, and I show you moving to just the category that contains those custom posts and how it comes back with no results.
Hi, I am not sure what more I can explain.
I pull information from the Youtube API and a custom post is created. I want to have those items in the custom post show up in a standard query loop result from the tagdiv loops. But it does not, nor can i just filter to that category and have it show up.
It will show up if i set things to be a static page that just displays the most recent posts if i include the code piece i added but it will not show up in a tagdiv results loop. what other information do you need?
I use the snippets plug in to run code and not modify functions.php
Just for reference since is the code that should append.
add_filter( ‘pre_get_posts’, ‘add_sby_videos’ );
function add_sby_videos( $query ) {
if ( is_home() && $query->is_main_query() )
$query->set( ‘post_type’, array( ‘post’, ‘sby_videos’ ) );
return $query;
}