aaroncabanas
Forum Replies Created
-
You can try with html:
<div> [Form id=”7”] </div>
If I understand well, you want to add a shortcode into html? In that case you can achive it by doing something like this
<div class="jirei-post-list"> [pt_view id="bb8f40f3lv"] </div>
I’ll do that then, thank you so much!
Sorry @asyag , what exactly is FM? And thanks for the link, I’ve just posted my trouble in there!
1. This is the exact form link: https://www.groupgia.com/servicio-tecnico/
2. As an admin I can see the submissions, yes
3. I didn’t really get that question well, I assume you mean to send a form as an admin, which I just did and recieved no confirmation email
4. I did, but none of them are gmail. May this be a problem?
5. https://drive.google.com/file/d/1ruW5LIaqApX62J8hL4_HxkY180iZz7rd/view?usp=sharingForum: Plugins
In reply to: [Caldera Forms - More Than Contact Forms] Not working on spain?A lot of people complainging about it, so im just going to check it as resolved
Forum: Everything else WordPress
In reply to: Form customer trackingSorry for being late, had some problems! Thanks you so much anyways!
Thanks!
I just find it out a few minutes after posting here and tried to remove the post with no result, anyways thank you so much for the support.
Forum: Everything else WordPress
In reply to: Register users through contact formSorry for answer to late!
Thank you so much, I’ll use Formidable and if I have a questions about it, I will write a ticket in the plugin support so I am going to close this one.
Thank you again!
Forum: Everything else WordPress
In reply to: Two database for one siteYep, same host and everything, just a manner to separate the data.
Forum: Everything else WordPress
In reply to: Two database for one siteYeah, I mean two separated databases, one for wordpress and the other one dedicated exclusively on the contact form data, thanks for the links and for the support!
Forum: Plugins
In reply to: [WooCommerce] Show product description on shop page IF it has this categoriesAt the end I figured it out seeing some other examples and worked out for me this way:
add_action( 'woocommerce_after_shop_loop_item', 'woo_show_excerpt_shop_page', 5 ); function woo_show_excerpt_shop_page() { global $product; if (!has_term( 'productos', 'product_cat', $product->get_id())) { ?> <div itemprop="description"> <?php echo apply_filters( 'the_content', $product->post->post_content ) ?> </div> <?php } elseif (has_term( 'productos', 'product_cat', $product->get_id())) { $tag_count = sizeof( get_the_terms( $post->ID, 'product_tag' )); echo $product->get_tags( ', ', '<span class="tagged_as">' . _n( 'Tag:', 'Tags:', $tag_count, 'woocommerce' ) . ' ', '.</span>' ); } }
Forum: Everything else WordPress
In reply to: Two database for one siteThanks! So for example, I made a contact form with the plugin “Caldera form” and I would like to get that info and store it in the “secondary” database. As I said im a newby so how could I get that output and send it to the database?
You may not know it, but anyways thanks for the info, if I could choose I would do a new table to my current database but I am just following rules from above!
Sorry for being late! Thank you so much, that worked as expected!
Forum: Plugins
In reply to: [WooCommerce] Can’t import CSV due max filesizeHi!
I had to do that fast beacause I had no time yesterday so at the end I just divided the CSV file in two and imported them one by one.
Anyways thank you for your time and support.