edegaru
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Get the Order Id on checkoutIt works!
Thank you very much lorro, you saved my day.
Forum: Plugins
In reply to: [WooCommerce] woocommerce_order_status_pendingAfter some research, maybe this can do the trick
woocommerce_checkout_order_processed
Forum: Plugins
In reply to: [Contact Form 7] Form name attributeThanks!
I recently found about html_name 🙂
Great plugin, great support.
Forum: Plugins
In reply to: [Timeline Express] Notice: Undefined property: WP_Error::$titleGreat Evan!
Nice plugin, really well done, and great support.
Just exclude that page from the rewrite rules on your .htaccess
Forum: Fixing WordPress
In reply to: Whole site just disappearedHi
Do you have the database credentials? User, database name, password?
Check upload_path on
wp-admin/options.php
Forum: Fixing WordPress
In reply to: lots of linksMaybe you can use the old plugin: Auto-hyperlink URLs
Warning: It has not been updated in a while
Forum: Fixing WordPress
In reply to: lots of linksAnd where in your site do you want those links? A list of all the links in one single page?
Forum: Fixing WordPress
In reply to: lots of linksWhy do you mean “add links”?
In a page? In a post?
Where do you have those links? Some CSV file or something like that?
Forum: Fixing WordPress
In reply to: Sum two diferent select option valuesI think Contact Form 7 doesnt support that by itself.
Maybe you need to create a hidden field, and use javascript to populate it with the sum of the other numeric fields. Or use a different form plugin.
Forum: Fixing WordPress
In reply to: Sum two diferent select option valuesHow are you passing and retrieving the result?
$_POST ?
$option[$i] ?
How did you migrate? Remember that WordPress stores the URL references in the database.
Forum: Fixing WordPress
In reply to: Some database problems could not be repaired.How do you get those values?
Forum: Fixing WordPress
In reply to: Sum two diferent select option valuesAre you sure the variables are defined as number data types?
Any number or character between parenthesis is a string, not a number or operator. Be careful with the use of parenthesis.
“5” + “2” = 52 (concatenation of strings)
“5 + 2” = 5 + 2 (simple string, because the plus sign is inside the parenthesis)
5 + 2 = 7 (mathematical operation)