ZaddKeefer
Forum Replies Created
-
I figured what was the problem, sorry for the inconvinenence.
I forgot to add wp_head();
The function that fetch plugin dataWell there isn’t much to explain beside what I am telling you.
I installed your plugin, activated it and done everything it told me to do. Titles is being dynamic with the plugin, but my meta description is not.
All I have done on my website (before I used this plugin) was having a custom meta description, which wasn’t really what I wanted.
Installed the plugin to have a more dynamic meta description, but I don’t know what’s wrong with my <head> since my site is not using the plugin.
Should I remove the meta description tag, so the plugin can add it automatically.I am very bad explaining it in english, sorry.
My problem is it’s not overwriting my meta description as I explained.
<meta name="description" content="<?php if ( is_single() ) { single_post_title('', true); } else { bloginfo('name'); echo " - "; bloginfo('description'); } ?>" />
This is my code, the plugin does not overwrite my custom php code for meta description. in the plugin field under “Description Format” I put in “%post_title% Specific Tips and Creations %description%”, I have inspected my website and on my post pages, it does not echo out the seo description I have made in the plugin.
- This reply was modified 5 years, 10 months ago by ZaddKeefer.
- This reply was modified 5 years, 10 months ago by ZaddKeefer.
- This reply was modified 5 years, 10 months ago by ZaddKeefer.
Forum: Fixing WordPress
In reply to: WordPress Bypass adblock so Affliate links works?grateful* sorry for any mistyping.
Forum: Plugins
In reply to: [Videojs HTML5 Player] Subtitles AND quality change?Hmm I’ve seen it work on other websites.. How does they do it? With the raw code?
Forum: Plugins
In reply to: [Videojs HTML5 Player] Subtitles AND quality change?Thanks in advance!
Forum: Plugins
In reply to: [Front End Users] PHP functions instead of Shortcodes?Thanks for sharing that, will check it out when I get the time!
Forum: Fixing WordPress
In reply to: How to display posts from a category with category?I am decent to say the least, but have no idea on how to put it all up in functions and such..
It’s my own theme I am working on. I want to list that list for a parent post.. So it displays child post with their categories.
This works for the child posts:
<?php $episodes = types_child_posts('episodes'); foreach ($episodes as $episode) { echo '<li><a href="' . get_permalink( $episode->ID ) . '">'; echo $episode->post_title; echo '</a></li>'; } ?>
But have no clue on how to include the child_post categories
Forum: Fixing WordPress
In reply to: List Child Post Links and Child CategoriesThanks for putting thought in this like really! but I doubt I can whip something this complicated together without coming to a dead zone.. For the last few weeks I have tried every kind angle, reversed code, trying new stuff.. I am mostly familiar with the basic of WordPress core functions and building within those lines
Topher IF you can get any free time to help me out with this even though it sounds like something that takes a lot of time.. I will pay you for your assistance, I know this is a free community and you sound like a humble guy, but this is like beyond on my “just a thing to do” list
Let me know if you are willing, and I pay for an expensive paypal beer!
[ No bumping please. ]
Forum: Fixing WordPress
In reply to: List Child Post Links and Child CategoriesYes that is exactly how i want to list it :)!
I tried for weeks to get this to work, and then you came around LOL.. and sorted one thing out..
We now so far got the links for the child posts for a parent post, now I want to list them by their category which is only “season” like so:
Seasons
Season 1 (child-post category):
– Episode (child post)
etc..We so far got Episode (child post) to list just fine under the parent post/page, what I need now is their category
Forum: Fixing WordPress
In reply to: List Child Post Links and Child CategoriesThanks a lot Topher, if you figure how to make it list by their categories as well.. I will love you eternal..
All I need now is it to list the child-post by the category they have.. which in my scenario is “seasons” the child post is only assigned to one taxonomy which is called “seasons” and has of course season 01, 02 etc.. you get me
Yet again thanks for helping me out, if you get this to work with the categories as well as of:
Season 1
– Episode 1
Season 2
– Episode 1If we get this to work too, I will donate you at least 50$! you helped me one of the problems so far.. All we need is the sort/ and list by the child category
Forum: Fixing WordPress
In reply to: List Child Post Links and Child CategoriesBoth, I want to get their LINKS and sort them by their categories
Use this line
<?php echo(types_render_field( "your-custom-field-slug", array( 'raw' => true) )); ?>
replace your-custom-field-slug with your custom field slug
hope it helps!
Forum: Fixing WordPress
In reply to: Custom-Post-Type with Custom-Taxonomy in url?Both..
But on index.php, archive-series.php, archive-movies.php it gets the custom taxonomy like this: /genre/comedy/
But for each custom-post-type I want it to order with the custom-taxonomy like so:
movies/genre/comedy/
series/genre/comedy/Any help appreciated