lesanis
Forum Replies Created
-
Forum: Plugins
In reply to: [WCMp Paypal Adaptive Gateway] Adaptive payments without MarketplaceHello and I am sorry for the late reply. I have used in the past woocommerce adaptive payments, that give the option in each product page to add multiple paypal emails (I think till 5 or 6 different emails) and the percentage of the price that should be transfered to them. Could you please explain what is the use of this plugin if I will not use it with the marketplace plugin? If I use it or not, in both situations I can use woocommerce with only one paypal account. Am I missing sth?
Thank you!Hello Nastia,
I already have the previous version of the plugin and I am using it but I am afraid that in the future I will have security or compatibility issues as it will be outdated. Are you planning to make the free or the premium version of the plugin compatible with wpml, custom post types and custom taxonomies as pop up pro is? Hustle is of course a powerfull plugin compared with pop up. If your developers could work on compatibility with wpml, custom posts and custom taxonomies like they have done with pop up pro, I believe that it would be propably the most powerfull and best email and pop up plugin in the market.
Forum: Plugins
In reply to: [Code Snippets] False Error MessageI just downgraded to a previous version of the plugin and there is no problem, so sth is wrong with the update. Please fix this.
Thank you
Forum: Plugins
In reply to: [WooCommerce] Reviews by user idI have found from an old thread this shortcode that shows all the reviews
add_shortcode( 'reviews', 'show_reviews' ); function show_reviews() {?> <?php $args = array ('post_type' => 'product'); $comments = get_comments( $args ); wp_list_comments( array( 'callback' => 'woocommerce_comments' ), $comments); ?> <?php }
but how could I make it show only logged in user’s reviews? I have tried the following
add_shortcode( 'my_reviews', 'show_my_reviews' ); function show_my_reviews() {?> <?php $args = array ('post_type' => 'product', 'user_id' => $current_user->ID ); $comments = get_comments( $args ); wp_list_comments( array( 'callback' => 'woocommerce_comments' ), $comments); ?> <?php }
but didn’t work. Could you please help me?
Thank you!
- This reply was modified 7 years, 9 months ago by lesanis.
Forum: Themes and Templates
In reply to: [GeneratePress] Full Width Featured Image for PostsHi Tom,
that did the trick!!!In my custom template I have added author’s avatar and some other php elements that now look wird after the image. I would like to place them as a second layer on top of featured image. Is there any function that helps to place that extra php code inside the same grid container that featured image is contained?
Thank you,
lesanisForum: Themes and Templates
In reply to: [GeneratePress] Full Height Footer WidgetsWoww, that did the trick! Thank you so much Tom!!!!!!!
Forum: Themes and Templates
In reply to: [GeneratePress] Full Height Footer WidgetsHello,
Yes,of course! I am sending you now an email with the link Tom.
Thank you again,
lesanisForum: Themes and Templates
In reply to: [GeneratePress] Full Height Footer WidgetsHello Tom,
I have found a very easy solution I think…. The solution is to expand the box shadow same color as footer widget 2 and footer widget 4 background till the footer of the page. So the code is
@media (min-width: 1025px) { div.footer-widget-2.grid-parent.grid-25.tablet-grid-50, div.footer-widget-4.grid-parent.grid-25.tablet-grid-50 { box-shadow: 0 500px rgba(0, 0, 0, 0.7); }}
Now the problem is that when the window minimizes (tablets and mobiles) the 4 columns become 2 or 1 and the box shadow is overlapping over the other widgets. In my window it’s changing at 1025px but I do not know if it is globally correct. So I have set that as min-width for the code to work. Can you confirm? The four columns are changing from 4 to 2 at 1025px?
And the other issue is that it is overlapping the footer too. I have tried the code
.site-info { z-index: 999999999999!important; } @media (min-width: 1025px) div.footer-widget-2.grid-parent.grid-25.tablet-grid-50, div.footer-widget-4.grid-parent.grid-25.tablet-grid-50 { box-shadow: 0 500px rgba(0, 0, 0, 0.7); z-index: 0!important; }
but unfortunatelly it is not working. Do you have any suggestions?
Thank you,
lesanisForum: Themes and Templates
In reply to: [GeneratePress] Full Height Footer WidgetsYes, I will try asking over on stack overflow. If I find a solution I will inform you Tom!
Thank you!!
Forum: Themes and Templates
In reply to: [GeneratePress] Full Height Footer WidgetsHello Tom,
Thank you for your response!!Could it be possible to give me an example? I think I can insert a javascript script in my child theme’s header but I do not know how to “determine the height of the empty space and apply it to the widgets”. Could you help me with that?
Thank you again,
lesanisForum: Plugins
In reply to: [BP Profile Search] Search by ConditionsThat did the trick, thank you so much Andrea!!!
Forum: Plugins
In reply to: [BP Profile Search] Search by ConditionsHey Andrea,
Unfortunately the plugin does not work for Profile Search Form.. Do You think that there is another way to make fields appear in search form, if a specific option is chosen?