runamuk0
Forum Replies Created
-
Forum: Plugins
In reply to: [Pods - Custom Content Types and Fields] Creating unwanted duplicate entriesDeleted 3 rows of PODS data to get us back up and running.
I tried your suggestion and I got a similar error:
Installation failed: Could not copy file. nextgen-gallery/products/photocrati_nextgen/modules/nextgen_addgallery_page/static/plupload-2.1.1/jquery.plupload.queue/css/jquery.plupload.queue.css
Thanks,
TonyForum: Plugins
In reply to: [Enhanced Media Library] Shortcode demo setupHow does the category setup work? Is it hierarchical like:
photo_year
2008
2009
2010
2011photo_month
1
2
3
…Forum: Plugins
In reply to: [Enhanced Media Library] Shortcode demo setupSo where does it get the year and month? Is it the upload date or something else? I need it to be my data because I have older media that I am adding now.
Please let me know if you need more information.
Unfortunately that did not fix the problem either.
From your first response:
PS: Based on the additional information of your other topic, please try using the Reset Option under Gallery > Other Options then clear your image cache under Gallery > Other Options > Miscellaneous.
I still get the above error no matter what combination of plugins I used. Also, your PS trial returned the following error message when I tried to got Other Options:
RuntimeException thrown
\WDP\DFS\30\5\8\6\3088624685\user\sites\4221595.site\www\wp-content\plugins\nextgen-gallery\products\photocrati_nextgen\modules\nextgen_other_options\templates\image_options_tab.php is not a valid MVC template
I have tried regressing to version 2.1.10 and then 2.1.07 and I still get the same error messages.
I have tried regressing to version 2.1.10 and then 2.1.07 and I still get the same error messages.
Forum: Plugins
In reply to: [WooCommerce] Upgrade to Woocommerce 2.3.10 causes checkout to hangMore information – I had the code below working prior to the update and now it fails and causes the checkout information to be blocked (class=”blockUI blockOverlay”) so you can’t continue the purchase. I’ve tried numerous other variations to set the length, width, height and weight so the UPS shipping calculates correctly.
Here is my code:
// This updates the cart data prior to the shipping calculations add_action('woocommerce_before_calculate_totals', 'rs_before_calculate_totals'); function rs_before_calculate_totals($cart_object) { foreach ($cart_object->cart_contents as $key => $value) { if ($value['product_id'] == PRICECALCPRODUCTNUMBER) { $addons = $value['addons']; foreach ($addons as $addon) { if ($addon['name'] == 'Custom Weight - Value') { echo $addon['name'] . ' - ' . $addon['value'] . "<br/>"; $value['data']->weight = $addon['value']; } if ($addon['name'] == 'Custom Width - Value') { echo $addon['name'] . ' - ' . $addon['value'] . "<br/>"; $value['data']->width = $addon['value']; } if ($addon['name'] == 'Custom Height - Value') { echo $addon['name'] . ' - ' . $addon['value'] . "<br/>"; $value['data']->height = $addon['value']; } if ($addon['name'] == 'Custom Length - Value') { echo $addon['name'] . ' - ' . $addon['value'] . "<br/>"; $value['data']->length = $addon['value']; } } } } }
Forum: Fixing WordPress
In reply to: Woocommerce Checkout Hangs (spinning circle)Hi,
I’m experiencing the same hang with a spinning circle in the cart checkout. Did you find a solution?Thanks,
TonyThank you for the quick turnaround.
Forum: Plugins
In reply to: [Seamless Donations is Sunset] Designated Funds QuestionHi Allen,
We have an older version of SD (Version 1.1.9.3) with the item functionality implemented.[dgx-donate-link item=1734]Pay your registration fee online[/dgx-donate-link]
Did you also write this version?
Thanks,
TonyForum: Plugins
In reply to: [Seamless Donations is Sunset] Hooks for thermometerHi Allen,
I’m relatively new to WP development. I just got into the code. Here is a website which has the type of display we would like to implement: https://www.donorschoose.org/project/first-grade-adventure/1158064/How long do you think this would take to implement?
If I were to implement this, what storage method would you use to store the Goal Amount? I was thinking of adding to the $fund_array either a second array with SHOW/HIDE and the Amount or concatenating the 2 values with a {tab} character or similar. What would you recommend?
Thanks,
Tony