mapsmarketing
Forum Replies Created
-
Thank you very much @bouncerent
It’s a bummer when the rug is pulled under you like this, but life goes on.
For anyone else interested whether this issue was actually resolved, read here: https://www.ads-software.com/support/topic/very-restrictive-and-more-expensive/
Forum: Reviews
In reply to: [Timely All-in-One Events Calendar] AvoidThank you @meandering for this review.
I’m having the exact same issue.
I can log into https://dashboard.time.ly/ but I cannot activate the plugin on my website anymore.
@bouncerent I’ve sent off a support message. It would be great to get this going again.
No worries @amin7
strtotime
will output wrong timestamps when using non-US formats which is what’s happening here, see /essential-addons-for-elementor-lite/includes/Elements/Event_Calendar.php – Line: 3161 and 3162 .You can add
$timezone = get_option('timezone_string');
and then use it within thestrtotime
in the following way so it can convert it to the correct timestamp.$start_time = strtotime( $event['start'] . ' ' . $timezone ); $end_time = strtotime( $event['end'] . ' ' . $timezone );
/** * Flow-Flow social plugin rebuild cache when the below URL is visited */ function flow_flow_init() { if (isset($_GET['ff']) && $_GET['ff'] == 'rebuild-cache' ) { flow_flow_rebuild_cache(); } } function flow_flow_rebuild_cache() { global $wpdb; $wpdb->query($wpdb->prepare('DELETE FROM '.$wpdb->prefix.'ff_posts')); $wpdb->query($wpdb->prepare('DELETE FROM '.$wpdb->prefix.'ff_post_media')); } add_action( 'init', 'flow_flow_init' );
In cPanel you can create a Cron Job now which runs https://example.com/?ff=rebuild-cache to rebuild the cache at any period you like.
- This reply was modified 8 months, 4 weeks ago by mapsmarketing.
Hi @maudud ,
Turn on Elementor, Elementor Pro and Prime Slider and then follow the steps in the Git post above.
Thank you
Hi @maudud ,
I wouldn’t call this a “feature” as it’s an obvious “flaw” within the slider.
I’ll just have to extend the slider code to allow for this. Let us know when you guys catch up.
Cheers
Forum: Plugins
In reply to: [ElementsKit Elementor addons] Elementskit Nav Menu not working on mobileStrangely, this issue affects only this 1 single website and none of the other ones. It’s really weird.
I think for now we can call this resolved until it happens again and i can give you a recording of it.
Great to hear @maudud
- This reply was modified 1 year, 8 months ago by mapsmarketing.
Not complex at all @maudud
There are several different ways you can achieve this, here’s two:
- You could add a switch control to allow users to use the featured images of the individual posts, and also disable background controls in the tabs if this is switcher is turned on.
- You could check if featured image option (from the dynamic tags) has been selected from the background group control (you can access these via
$settings['__dynamic__']
).
The below example modifies the
render_thumbnav
which by default shows the post thumbnail for each nav item:File: /wp-content/plugins/bdthemes-prime-slider-lite/modules/storker/widgets/storker.php
public function render_thumbnav() { $settings = $this->get_settings_for_display(); $this->add_render_attribute( 'thumb-item', [ 'class' => 'bdt-item swiper-slide', 'style' => "background-image: url('" . get_the_post_thumbnail_url( get_the_id(), 'full' ) . "');" ] ); ?> <div <?php echo $this->get_render_attribute_string( 'thumb-item' ) ; ?>> <div class="bdt-storker-content"> <h3 class="bdt-storker-title"> <a href="javascript:void(0);"><?php echo esc_html( get_the_title() ) ; ?></a> </h3> </div> <div class="bdt-storker-arrow"> <a href="<?php echo esc_url( get_permalink() ) ; ?>"> <i class="eicon-arrow-right"></i> </a> </div> </div> <?php }
Anyways, I’ll just extend your
Storker
widget to allow for the functionality.Have a great day
Hi @maudud
That doesn’t make much sense at all from a functionality perspective. Why would you show the current page’s featured image for the backgrounds of the thumbnail slides??? You’d be using the feature images of the posts in the thumbnail slides as a preview
Sounds like this wasn’t really well thought out.
Do you know what I mean?
Thank you very much
- This reply was modified 1 year, 10 months ago by mapsmarketing.
- This reply was modified 1 year, 10 months ago by mapsmarketing.