Yuga Gopalakrishnan
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form 7 Popup Response] pop up field nameHi,
How can I integrate the Contact Form 7 Popup Response in the already created contact form. Please provide step by step instruction.
Regards
Forum: Plugins
In reply to: [Easy Sign Up] Removing Last Name FieldThanks for quick reply.
I just tired using a script .remove function but it throws an blank page error..
It would be really helpful if you let me the JQUERy code and the usage.
Thanks in advance.
Forum: Plugins
In reply to: [Easy Sign Up] Removing Last Name FieldHi Green,
I just want the email id and I dont wish to collect both and first and last name. Could you please help me to do so.. I am using ESU via widget.
I also tried the shortcode [easy_sign_up fnln=’0′] but still the name field appear.
Regards
YugaForum: Plugins
In reply to: [Widget Logic] show on blog excerpFirst, register a widget sidebar in function.php with the following code.
register_sidebar( array(
‘name’ => ‘Custom Widget’,
‘id’ => ‘custom-widget’,
‘before_widget’ => ‘<div>’,
‘after_widget’ => ‘</div>’,
‘before_title’ => ‘<h2 class=”rounded”>’,
‘after_title’ => ‘</h2>’,
) );You will see this widget in WordPress back end >> Appearance >> Widget >> Custom Widget and copy/paste your content in this widget. Once done,
Copy the following code in any PHP file where you want to show up the widget/content.
<?php dynamic_sidebar(‘Custom Widget’); ?>
Forum: Installing WordPress
In reply to: /wp-admin/install.php not found – laughing squidHi WW,
It seems that, you have not yet installed the word press and the “Your website is ready” is a plain html page.There are different ways to install WordPress. Follow the Installation instruction in the below link.
http://codex.wordpress.org/Installing_WordPress
or else login to your Cpanel and check for softaculous or Fantastico or other auto installers to install the wordpress from cpanel.
Or Just download the wordpress from http://wordpress.org/download/, unzip the files, move the files(which is inside the wordpress folder) to public_html via FTP client and check http://www.chrisyoungjewelry.com/. You will see the welcome page with run install button to install the wordpress.
Let me know if you need more clarification.
Good Luck.