tubegtld
Forum Replies Created
-
Forum: Plugins
In reply to: [.TUBE Video Curator] Any option to add the youtube link to descriptionYou can do this using
the_content
filter.This article should get you most of the way there…
Forum: Plugins
In reply to: [.TUBE Video Curator] Plugin stopped working after 1 monthHaven’t heard back so going to mark this as resolved. Please reopen if you’re still having issues.
Forum: Plugins
In reply to: [.TUBE Video Curator] Plugin stopped working after 1 monthPlease note that auto imports will only work if the site has traffic b/c it’s tied to WP Cron.
Forum: Themes and Templates
In reply to: [.TUBE] Short content & no banner = footer links not workingNot sure when a new version will be released, but this is patched in dev with the following CSS…
body:not(.has-gloryshot):not(.has-featured-video) .gloryshot-wrap { display:none; }
You can drop that into “Additional CSS” in the customizer and it should resolve across the board.
- This reply was modified 7 years, 6 months ago by tubegtld.
Forum: Plugins
In reply to: [.TUBE Video Curator] Plugin stopped working after 1 monthCan you please be more specific about what you mean by “stopped working?”
And are there any messages in your PHP error log?
Forum: Themes and Templates
In reply to: [.TUBE] fix second page in categoryGreat to hear. Best of luck with the site.
Forum: Themes and Templates
In reply to: [.TUBE] fix second page in categoryIf you’d like, send an admin user invite to [email protected] and I’ll take a look as time permits.
No guarantees, at your own risk, etc.
Forum: Themes and Templates
In reply to: [.TUBE] fix second page in categoryThis doesn’t look like an “out-of-the-box” category page URL…
https://www.guitarist.co.il/beginners/
It should look like this…
https://www.guitarist.co.il/category/beginners/
How are you removing the category slug?
Forum: Themes and Templates
In reply to: [.TUBE] fix second page in categoryI think you may be over-solving it and would recommend you use the built-in WordPress categories.
1) Go to the categories editor and create categories for Beginner, Intermediate, and Insane…
https://www.guitarist.co.il/wp-admin/edit-tags.php?taxonomy=category
2) Go to the post editor, and select the “category/ies” you want it to be in (e.g. check the box for Beginner, but not Advanced)…
https://www.guitarist.co.il/wp-admin/post.php?post=653&action=edit
3) Go to the category page to see just posts from that category…
e.g. https://www.guitarist.co.il/category/beginner (or beginners depending on your category slug)
Forum: Themes and Templates
In reply to: [.TUBE] fix second page in categoryHello Pluplik.
Typically, you wouldn’t have to “make” a category page.
Rather, you’d add the category, assign it to the post(s), and they’d “automatically” appear using the index.php template on a URL like this…
https://www.guitarist.co.il/category/beginners/
Given that, can you please explain what you mean by a “I’ve made a ‘category page?'”
Also, please turn off ALL plugins to ensure that your issue is exclusive to the theme.
Truly hope we can get you sorted out.
Forum: Themes and Templates
In reply to: [.TUBE] page text shows on header and postGlad you got it resolved and thank you for the kind words about the theme.
If you’d be willing to write a review that’d be greatly appreciated…
https://www.ads-software.com/support/theme/tube/reviews/
Take care and good luck with the site!
Forum: Themes and Templates
In reply to: [.TUBE] page text shows on header and postOkay, so please post the entire <body> tag from the page in question.
how do I do that? sorry for being a rookie.
Go to the page in question, right-click, and choose “View page source” or similar.
Then, look for something that looks like this…
<body class="home blog logged-in admin-bar no-customize-support wp-custom-logo has-gloryshot" itemscope itemtype="https://schema.org/WebSite">
Copy it and paste it here.
Forum: Themes and Templates
In reply to: [.TUBE] page text shows on header and postmy website is still on my localhost . I didn’t upload it live yet .
Okay, so please post the entire <body> tag from the page in question.
Forum: Themes and Templates
In reply to: [.TUBE] remove latest video textnot home page. from another page.
The same approach still applies.
You’ll need to look at the class attribute of the <body> tag for that page and find something you can “hook” to for purposes of selecting the specific page where you want to hide that heading.
So for example, here’s how you could hide it on ALL category pages…
body.archive.category .page-content > h3, body.archive.category .page-content > hr { display:none; }
And here’s how you could hide it on a specific category with the slug ‘mycategoryslug’…
body.archive.category-mycategoryslug .page-content > h3, body.archive.category-mycategoryslug .page-content > hr { display:none; }
Forum: Themes and Templates
In reply to: [.TUBE] single post previous/next links by categorySeems like an elegant enough solution! Thank you for sharing it here.
Will definitely consider updating the theme to provide an easier way to achieve this.
- This reply was modified 7 years, 7 months ago by tubegtld.