diversityx
Forum Replies Created
-
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Change Slug from advertsDo you recommend the snippet added to our functions.php or?
Wasn’t sure if I should do support via email or forum.
Thanks for the quick response!
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Change Slug from advertsHow can we set a custom template – such as a single-advert.php for the advert-category/category/ pages? Not sure how WP can do this because it is using a parent directory. Did you create a custom post type? How can we theme this with a custom template?
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Gallery upload problemLatest 1.2.2 Fixed my issue with uploading.
Forum: Plugins
In reply to: [WPAdverts - Classifieds Plugin] Gallery upload problemI am having the same issue. Unable to upload images.
Uncaught Error: Syntax error, unrecognized expression: #[object HTMLDivElement] .adverts-gallery-uploads at Function.fa.error (jquery.js:2) at fa.tokenize (jquery.js:2) at fa.select (jquery.js:2) at Function.fa (jquery.js:2) at Function.a.find (jquery-migrate.min.js:2) at n.fn.init.find (jquery.js:2) at n.fn.init.a.fn.find (jquery-migrate.min.js:2) at a.fn.init.n.fn.init (jquery.js:2) at new a.fn.init (jquery-migrate.min.js:2) at n (jquery.js:2)
Forum: Reviews
In reply to: [BadgeOS] Project appears deadThe project was still was still in development, so I didn’t do a transfer. They do have import scripts,and it’s been easy to find a developer that was connected to MyCred. I had good work from 2 of their approved developers.
Wowsers. Just dropped your code in strangerstudios, and it went from 28 seconds in plugin load to 1.3
Forum: Plugins
In reply to: Conditional to remove date meta from tags pageOk then, I solved it with a custom field. Very powerful tool!
‘ $view = get_post_meta($post->ID, ‘show_date’, $single = true);
if ($view === no ) { }
else { ?>
<div class=”postdate”>
<div class=”postday”><?php the_time(‘j’) ?></div> <!– POST DAY –>
<div class=”postmonth”><?php the_time(‘M’) ?></div> <!– POST MONTH –>
</div> <!– POST DATE –>
<?php } ?>’This will work without having to mess with the code more than once. Thanks for your assistance.
Forum: Plugins
In reply to: Conditional to remove date meta from tags pageAhhh… I’m using a plugin called “Simple Tags”. Perhaps this is what is creating this issue.
I like having tags on my pages. But they definitely need to be displayed differently in their summaries.
How would you write the logic loop for this, short of doing an array of every individual page. <ugh>
Forum: Plugins
In reply to: Conditional to remove date meta from tags pageOn my tag.php page, I have summaries of many posts that relate with the tag. Some are posts, some are pages. I want dates to show on the post summaries, but not on the page summaries. I have to create a conditional that says “if this summary is from a post, show the date… if from a page, don’t show the date”.
Forum: Plugins
In reply to: Conditional to remove date meta from tags pageThe tag is_page doesn’t seem to work in a loop when displaying a list of posts. I had hoped that was my answer.
Forum: Plugins
In reply to: Conditional to remove date meta from tags pageIn the tags.php. We have titles of posts with dates, and titles of pages without it.
How does one differentiate a post from a page entry with a conditional?