lolo23
Forum Replies Created
-
Hi @stepasyuk, thanks for your reply.
My issue was that I had unused terms appearing in the initial list, even though no posts use them anymore. So what feels like a glitch rather than a viewing preference.
Choosing ‘always hide’ did succeed in hiding them, but also hid active terms as the posts were filtered down.
I tried ‘hide in the initial filter only’ and that got rid of them, while still allowing the active terms to grey out as the posts are filtered down.
Thanks!
Forum: Plugins
In reply to: [The Events Calendar] Colour code categories in list viewHi @gega79
I also wanted to colour code the date box by category. I managed to get it working last night.https://paste.pics/d7a728666314bccf29f2db65b75e3026
This was my (probably questionable) method:
I changed line 36 of date-tag.php from
<div class=”tribe-events-calendar-list__event-date-tag tribe-common-g-col”>to
<?php $event_classes = tribe_get_post_class( [ 'tribe-events-calendar-list__event-date-tag', 'tribe-common-g-col' ], $event->ID ); ?> <div <?php tribe_classes( $event_classes ) ?>>This gave me the following output:
class=”tribe-events-calendar-list__event-date-tag tribe-common-g-col post-2834 tribe_events type-tribe_events status-publish hentry tribe_events_cat-auction cat_auction”I put this into my stylesheet:
.tribe-events-calendar-list__event-date-tag.tribe-common-g-col.tribe_events_cat-auction.cat_auction {
background-color: blue;
}Forum: Themes and Templates
In reply to: [Sydney] Mobile menu not visible on child themeI had to make a new header file in my child theme, based off the newly updated header. That fixed it for me.
Forum: Themes and Templates
In reply to: [Sydney] Mobile menu not visible on child theme@lucy_jo
I managed to find the header notice.
If you go to /wp-admin/options.phpThen scroll down to
sydney-update-header-dismiss
and change the value to 0The update option reappeared on my dashboard.
Forum: Themes and Templates
In reply to: [Sydney] Mobile menu not visible on child themeI’m in the same boat. I dismissed the header upgrade (since it said no need to upgrade if you’re happy – didn’t mention it would break the menu!) and now can’t find any way of upgrading.
Highly unlikely I’ll be getting any orders on my site until it is fixed…Edit: I think the legacy header may well be causing the scroll up button not to work either. The “go-top” button in the page code doesn’t have an icon. I then spotted the ‘scroll to top’ option in Customise, but that doesn’t work at all…
- This reply was modified 3 years, 6 months ago by lolo23.
Forum: Plugins
In reply to: [WP Store Locator] Map Zoomed Out on Individual Store PageIt’s in the documentation here:
https://wpstorelocator.co/document/set-custom-zoom-level-single-store-pages/Hi @kharisblank
Thanks for your reply.
It doesn’t appear to be the child theme, it looks pretty horrendous with the main theme enabled!
I will email you, thanks.
I have also got this message since the updates.
Hi, thanks for your reply, much appreciated.
Having gotten over the initial panic (!) I’ve made a bit of progress.
The site giving me the most problems is http://www.jeepjumpjive.co.uk
I have updated to the newest versions of Sydney, WordPress and PHP. Reading through other support posts I also added the wp_body_open tag into my child theme’s header file.It doesn’t look too bad now but the front page slider is missing. In mobile view all of the slides are shown at the same time, one above the other.
My font choices have gone – I presume I can add Google fonts in manually?
The other site is http://www.pcepoxy.co.uk
Same issues with the slider and fonts. That is still on a much older version of Sydney, so I’m not sure how your latest updates could have effected it? I haven’t run any updates yet as I wanted to wait until I know how to get the other website working.Thanks
Forum: Themes and Templates
In reply to: [Newsup] Posts in the Popular and Trending tab not updatingI have found problem line (‘orderby’ => ‘comment_count’,) in the newsup_render_posts function.
I’ve installed the “Post Views Counter” plugin, but looking through its code I’m not sure what bit I need to take and where to put it?
It is isn’t too much trouble, could you tell me where to go from here?Forum: Themes and Templates
In reply to: [Newsup] Posts in the Popular and Trending tab not updatingThanks @ingo224996 for your reply! Good to see you worked out what the problem is – shame Support haven’t managed it!!
Doesn’t give me a lot of faith in the theme. I won’t be upgrading to Pro anytime soon.
I will give your solution a go.
Forum: Themes and Templates
In reply to: [Newsup] Posts in the Popular and Trending tab not updatingI have the same issue on my website, solution not working.
Trending and Recent are the same.
As for Popular, it is showing my newest post and three old ones. If anything, my least popular posts!Forum: Hacks
In reply to: Problem with custom shortcode using mysql queryThanks – makes sense. It has got rid of “Array” appearing, but now displays nothing at all!
Forum: Hacks
In reply to: Problem with custom shortcode using mysql queryThank you, I’m not sure how to fix that though?!
Forum: Hacks
In reply to: Using permalinks with unique meta_value queryThanks. The above code didn’t work out for me either, I think it was the JOIN section that was wrong.
Just to update for anyone else who should come across this, I solved my problem with the below code:
`<?php
$cat_id = 10;
$querystr = “
SELECT wposts.*
FROM $wpdb->posts wposts, $wpdb->postmeta wpostmeta
WHERE wposts.ID = wpostmeta.post_id
AND wpostmeta.meta_key = ‘product_name’
AND wposts.post_type = ‘post’
AND ID IN ( SELECT object_id FROM $wpdb->term_relationships WHERE term_taxonomy_id = $cat_id )
GROUP BY wpostmeta.meta_value
“;$pageposts = $wpdb->get_results($querystr, OBJECT);
?>
<?php if ($pageposts): ?><?php global $post; ?>
<?php foreach ($pageposts as $post): ?>
<?php setup_postdata($post); ?>“><?php echo the_field(‘product_name’);?>
<?php endforeach; ?>
<?php endif; ?>’