Neha_jer
Forum Replies Created
-
Forum: Plugins
In reply to: [WooCommerce] Send different links to every customerOkay, thanks for your quick reply.
Forum: Plugins
In reply to: [WooCommerce] Send different links to every customerOkay,
But what if a single product has multiple links, and I need to send only 1 link to a customer.
It will be go like this that when first customer purchases a product, first link will be sent to that customer and when second customer purchases a product, second link will be send to the second customer.Any idea, how this can happen?
Forum: Plugins
In reply to: [WooCommerce] Changing Product Variation Display | How to?I can not see any URL in your post except woocommerce plugin’s URL
Forum: Plugins
In reply to: [Contact Form 7] Problem with e-mail in 'From'fieldTry writing :
From:[your-name] [your-email]
Forum: Plugins
In reply to: [Contact Form 7] Problem with e-mail in 'From'fieldHii rock9design,
What exactly are you writing after “From:”?
Are you trying to do something like this: “From:[your-name] <[your-email]>”??Forum: Plugins
In reply to: [Contact Form 7] First Timer html studentHii INTABA,
Sorry for late reply.
Please tell me which version of contact form 7 plugin are you using?
Forum: Plugins
In reply to: [Contact Form 7] First Timer html studentHii INTABA,
All you have to do is click on “Insert Tag” when you generate a text box. The value filled by user will automatically go to message body of email.
Forum: Plugins
In reply to: [Contact Form 7] First Timer html studentHii INTABA,
Please paste the code you are writing in the message body of your mail
Forum: Plugins
In reply to: [Contact Form 7] First Timer html studentYou are welcome!!
Forum: Plugins
In reply to: [Contact Form 7] First Timer html studentwith the default tag i can only see the form without the wording guide for the input boxes.
For this you need to add placeholders for your text boxes
or add labels before the text boxes.Forum: Plugins
In reply to: [Menu] How to Position Custom MenuTry using this: /** * Add a search bar to the navigation menu. * * @since Twenty Twelve 1.0 */ function menu_search($items){ $search = '<li class="search">'; $search .= '<form method="get" id="searchform" action="/">'; $search .= '<label for="s" class="assistive-text">Search</label>'; $search .= '<input type="text" class="field" name="s" id="s" placeholder="Search" />'; $search .= '<input type="submit" class="submit" name="submit" id="searchsubmit" value="Search" />'; $search .= '</form>'; $search .= ''; return $items . $search; } add_filter('wp_nav_menu_items','menu_search');
Forum: Localhost Installs
In reply to: Can't access wp-adminWell in that case you might have written a wrong code,revert back your recent changes.
Hope it will work!!Forum: Localhost Installs
In reply to: Can't access wp-adminWere you able to access your admin area anytime before or is it the first time you tried to access it?
Forum: Localhost Installs
In reply to: blank page on localhost websiteYou need to change the Site URL in the database. Look for wp_options table to do so.
Forum: Plugins
In reply to: [Contact Form 7] Mobile Responsive LayoutJust remove the space between elements inside the div in the editor.