nspace1999
Forum Replies Created
-
I appplied this style
.um {
opacity: 1 !important;
}it worked but dropdown is still invisible
Forum: Plugins
In reply to: [WP Go Maps (formerly WP Google Maps)] map does not showOk wp_footer() was missing. Thanks
Forum: Plugins
In reply to: [Featured Video Plus] width : 0px forI think beacause parent has float right. See my next post
Forum: Plugins
In reply to: [Page Transition] no-animation is not workingEven with on class, it seems not working.
As I want to apply the class on wordpress menus, I’m adding the class with jQuery.Forum: Fixing WordPress
In reply to: wp_query with a group by clauseHello… than you for answering. Actually I need somethiing more complex.
I made a custom query and it worked for me :
SELECT mt1.*, mt2.*, GROUP_CONCAT(DISTINCT CONCAT(mt2.meta_value, '' , mt3.meta_value)) FROM wpjght_posts INNER JOIN wpjght_postmeta ON (wpjght_posts.ID = wpjght_postmeta.post_id) INNER JOIN wpjght_postmeta AS mt1 ON (wpjght_posts.ID = mt1.post_id) INNER JOIN wpjght_postmeta AS mt2 ON (wpjght_posts.ID = mt2.post_id) INNER JOIN wpjght_postmeta AS mt3 ON (wpjght_posts.ID = mt3.post_id) WHERE 1=1 AND wpjght_posts.post_type = 'kine' AND (wpjght_posts.post_status = 'publish' OR wpjght_posts.post_status = 'future' OR wpjght_posts.post_status = 'draft' OR wpjght_posts.post_status = 'pending') AND (wpjght_postmeta.meta_key = 'wpcf-lat' AND mt1.meta_key = 'wpcf-lng' AND mt2.meta_key = 'wpcf-nom' AND mt3.meta_key = 'wpcf-prenom' ) GROUP BY mt1.meta_value, wpjght_postmeta.meta_value ORDER BY wpjght_posts.post_date DESC
After 2 days working on it, hope it could help someone.
Hello
The data are correctly stored in database. I think my code does not work beacause the values are serialized in database.
Am I right ?Ok I figured it out in “what to show” section.
Hello
I have resintalled plugin by ftp. Same issue
Not Found
The requested URL /nextgen-attach_to_post was not found on this server.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
It occured way after. Those issues are not related.
ThanksI just did.
Did not solve the problem.My bad. I had to change realpath of template.
Actually I use the beta 2.0.66.5 for being able to use with wpml
Ok I just did the bug report. The version I use : 2.0.66.5
Hello
Thanks for the link.
I can’t attach anything to a post page on clicking the “attach button” in the tool bar.
All The tabs except “display settings” does’nt show any option.
Could you help me ?
ThanksForum: Plugins
In reply to: [PayPal for WooCommerce] want checkout message at the bottom of checkoutpageHello
Thanks for replying. Yes I was talking about the express checkout button.
Actually to copy the checkout message from top of the checkout page to bottom, I pste thsi code<div class="woocommerce"><div id="checkout_paypal_message" class="woocommerce-info info"><div id="paypal_box_button"><a class="paypal_checkout_button paypal_checkout_button_text button alt" href="https://phonesmart.lu/test_1/?wc-api=WC_Gateway_PayPal_Express_AngellEYE&pp_action=expresscheckout">Payer avec PayPal</a><p class="checkoutStatus">Skip the forms and pay faster with PayPal.</p><div class="clear"></div></div></div><div style="clear:both; margin-bottom:10px;"></div> </div>
It seems to work.