ZoiX
Forum Replies Created
-
Hello Craig,
Thank you for your quick response. It totally makes sense!
In the meantime, I was able to generate a JSON from the instagram API passing them an access token. It gives me all the data I need; a little bit of CSS and JS will make the trick, hopefully.
I will have my eyes open for the next major update.
Thank you again Craig!
Forum: Plugins
In reply to: [All-in-One WP Migration and Backup] Importing stuck at 100%All-in-One WP Migration Import works for me.
Hello there,
I solved both issues.
Charset (accentuation):
I replace this:return '<div class="'.htmlentities($_GET['type']).'">'.htmlentities(urldecode($_GET['msg'])).'</div>'.$content;
by this:
return '<div class="'.htmlentities($_GET['type']).'">'.htmlentities(urldecode($_GET['msg']), ENT_QUOTES, 'UTF-8', false).'</div>'.$content;
– – –
The issue when the cart is not empty after the user make a payment, I just delete the if statment, I am not sure why I need to do that, but in my case it works:
I replace this:$order->payment_complete(); if ($this->empty_cart == "yes"){ $cart = new WC_Cart(); $cart->empty_cart(true); }
And just erase the if:
$order->payment_complete(); $cart = new WC_Cart(); $cart->empty_cart(true);
Hope it helps to someone else.
I did a shortcode and I added to my return page after the order is received. Please, if you have a solution let me know. I tried to modify your plugin but it didn’t work.
And about accentuation, I have no idea.
I have the same error.
Even if I go to the Cart again or refresh the site, there are the items the user paid before.
I checked the “empty” option in the settings.I am in testing mode (if you want you can test it), but anyway, the stock is counting the payment.
By the way, take a look (the message and the charset issue): https://ubikuo.co/order-received/?msg=Pago+Aprovado+por+PayU+Latinoam%C3%A9rica&type=woocommerce-message
I really want the tick (accentuation), I saw it in the .po file but I don’t want to remove ??
The charset is set to UTF8.Thank you digitalhydra.
Forum: Plugins
In reply to: [Infinite-Scroll] JavaScript doesn't work after loadI am sorry, it is not your fault.
I just replaced my events por live() event: https://api.jquery.com/live/Forum: Plugins
In reply to: [Plugin: Sharedaddy/JetPack] change LanguageI’m trying to do the same, I’m added:
load_plugin_textdomain( 'sharedaddy', false, basename( dirname( __FILE__ ) ).'/languages/' );
in the sharing_init() function but it doesn’t work.
Forum: Plugins
In reply to: List some authorsNewbie question, I’m sorry, I was seeking throught user info and I get this:
<?php $users_i_need = get_users('role=author&exclude=1, 2,3,4,46'); foreach ($users_i_need as $user) { echo '<li>' . $user->display_name . '</li>'; } ?>
With get_users I can get URL too:
<?php $users_i_need = get_users('role=author&exclude=1,2,3,4,46'); foreach ($users_i_need as $user) { ?> <ul> <li><a>/author/<?php echo $user->user_login ?>"</a><?php echo $user->display_name ?></li> </ul> <?php } ?>
Forum: Hacks
In reply to: Administration Over SSLForum: Plugins
In reply to: [Quick Chat] [Plugin: Quick Chat] JQuery problemsMarko!
In my theme I had a mistake, and you’re right. I just include <?php wp_enqueue_script(“jquery”); ?> and delete all my own calls to another jQuery libraries and work perfect!
Thank you for your kindness and don’t worry for the delay, it is completely understandable.
Would be great to include this feature in the pop-up from Tiny MCE; this because maybe new users will not understand the “trick”.
However thank you for the hint!
The same for me. JetPack disables all my jQuery scripts: tabs, slider, scrolls, slides. I’m using jQuery 1.7.1, the same that is using JetPack.