loopz
Forum Replies Created
-
Hi Alex! Thank you for that fast reply.
And yes – exactly, need to route users directly from the email verification link into a logged in state.
My client’s got a pro account of the plugin – is it possible to be done with a paid support ticket for at least one site?
Forum: Reviews
In reply to: [Spectra - WordPress Gutenberg Blocks] BEST DAMN PLUGIN ON THE PLANET!You betcha!
I got an Astra lifetime license.
Recently got more familiar with Spectra Pro, thus the excited review! ??
Brainstorm Force is one of the rare groups, if not the only one, that has never failed to make a good impression. Sign me up if you want – I’ll be your free marketing advocate ??
- This reply was modified 6 months, 4 weeks ago by loopz.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Custom single property layoutAlright, I checked that, but the child theme doesn’t really do anything…
I tried both
/estatik/front/property/
and just
/estatik/
to load the single.php file but it doesn’t work…
Is there a lot of difference from a previous version of the plugin?Anyway, I see this in the file, and from what it looks like after a quick check, am I at all able to separate the sections?
if ( $sections = $instance::get_items( 'property' ) ) : foreach ( $sections as $section ) : do_action( 'es_single_property_section', $section, get_the_ID() ); endforeach; endif;
Ultimately, if it’s a lot to explain, is there a chance I just send the client to you for a paid consultation? Or even better, I can sign in on their behalf and continue the conversation…
Again, it’s all about splitting the sections, pull them out of the FOREACH statement, render them 1 by 1 so I can control the layout…
Thanks!
- This reply was modified 1 year, 2 months ago by loopz.
Forum: Plugins
In reply to: [Estatik Real Estate Plugin] Custom single property layoutThank you for the fast answer!
Can you please elaborate what customization exactly I can do?
For example, if I get the PRO version, can I remove the contact form with a hook or a filter?
That would be one thing, and the other, which is more important
I want to introduce a tabbed layout, like in the older versions
So I can link those tabs with anchors into their own sections…
If these two items can work – that’d still be perfect!Forum: Plugins
In reply to: [Jigoshop] Can't add attributes.Is there any general rule why this issue happened or it was specific to dragonflyfla’s setup?
Asking because I have the exact same problem but can’t figure it out.
Thanks
Forum: Plugins
In reply to: exclude a category from get_the_categoryThis works great
<?php foreach((get_the_category()) as $cat) {
if (!($cat->cat_name==’artwork’)) echo $cat->cat_name . ‘ ‘;
} ?>
Is it possible to exclude multiple categories instead of just one?
Many thanks
saved me a lot of trouble here =)