bigdrop.gr
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] I want to filter products by attributes with AND logicHi,
Thank you for your reply. This plugin that you recommend shows the variations as different products.
This is not what I want. I need the search function to work properly.Please check this image https://ibb.co/tx0cRRK
I have 5 variations, like this:
Metallic Gold – Leather – Platform – Back Strap – Any Women Size
Pink – Nubuck – Flat – Back Strap – Any Women Size
Ochra – Nubuck – Flat – Back Strap – Any Women Size
Beige – Nubuck – Flat – Back Strap – Any Women Size
Lilac – Nubuck – Flat – Back Strap – Any Women SizeNow if I search for “Metallic Gold” & “Nubuck” it will show the above product in the results. This is wrong, because none of the variations has the to attributes at the same time. There is no variation with color “Metallic Pink” and texture “Nubuck”.
I have set the search widget “Filter Products by Attribute” and Query type to “AND” but is still shows all the products.
Forum: Plugins
In reply to: [WooCommerce] Error when apply coupon, loads empty cart pageHi thank you for your reply.
This is a working website, I can not do this.
Is there any other way to debug this?
Forum: Plugins
In reply to: [ACF-VC Integrator] Google maps display only the address as a trextI apologise. This was my fault. The map is working properly.
Thank you very much.- This reply was modified 6 years, 4 months ago by bigdrop.gr.
Forum: Plugins
In reply to: [WP Job Manager] GDPR and ADD ONS Resume manager, alert, applicationsI did not understand.
If a candidate has created an account on my website and he has job alerts enabled. When I delete the user from the admin>menu>users he will no longer receive alerts, correct?
But I have to search manually for candidates and delete their resumes even if I have deleted their account?
Thank you
Forum: Plugins
In reply to: [WP Job Manager] Change price currency to €Forum: Plugins
In reply to: [WP Job Manager] Trying to modify the Job submission pageSo I managed to remove the twitter accound field. Can someone tell me how to remove the header image upload button?
Thank you for your reply.
I’ll check it and let you know.
Hello,
the regex is causing white screen of death.
Do you think there is a conflict with another plugin?
Thank you
Forum: Plugins
In reply to: Error “Installation failed: Could not copy file” but plugin is installedUPDATE: Plus I can not update any pugin or theme.
Forum: Plugins
In reply to: Error “Installation failed: Could not copy file” but plugin is installedUPDATE: When I enable the WP_DEBUG I get no errors.
Thank you!
Forum: Themes and Templates
In reply to: [AccessPress Mag] Slider alignment.Hi, there!
After so many months I’m posting again with the same issue.
I tried adding more than 3 sliders as you suggested but nothing changed.Then I switched the slider view, the one that with 4 small posts on right. But again it does not show properly.
I visited the themes demo and there you use 765X496 px images so I changed my images to that size but again it does not show properly.
Please visit my website at https://www.deltanews.gr and check to see what I mean.
I want to use this theme for my website but my website looks messy with the slider not showing properly. Please provide me with a solution.
Thank you in advance.
Forum: Plugins
In reply to: [AMP] Plugin Not Working, Redirecting to non AMP URLUpdate!!
I have also installed from the beginning the “Facebook Instant Articles & Google AMP Pages by PageFrog” plugin. This plugin is causing the problem.
If you use this plugin you need to go to the plugins settings and click enable for posts.
Forum: Plugins
In reply to: [AMP] Plugin Not Working, Redirecting to non AMP URLI have exactly the same problem. this happens both on pages and posts.
I have resaved the permalinks!
Forum: Plugins
In reply to: [AMP] Pretty Permalinks not workingThe same problem here!
I use varnish for server side cache.
I have installed and activated the plugin. I re-saved the permalinks. Tried adding the ?amp=1 in the end of my links but nothing happens!
My problem is that if I add ?amp=1 or /amp/ in the end of a post
ex. https://bigdrop.gr/10-mithi-gia-to-seo/?amp=1
or
https://bigdrop.gr/10-mithi-gia-to-seo/amp
both leads to the main article which is:
https://bigdrop.gr/10-mithi-gia-to-seo/Any clue why this is might happening?
Thank you!I figured it out!!
Just in case anyone need this!!
<?php $venuetitle = get_the_title(); $args = array( 'post_type' => 'foodmenus', 'tax_query' => array ( array ( 'taxonomy' => 'venues', 'terms' => $venuetitle, ) ) ); query_posts($args); if ( have_posts() ) : ?> <ul> <?php while ( have_posts() ) : the_post(); ?> <li><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></li> <?php endwhile; ?> </ul> <?php endif; ?>