codingpuss
Forum Replies Created
-
May I know why you prefer a template to a plugin? A plugin doesn’t interfere with the current template you are using and you can use the pages generated by the plugin as homepage too.
Thanks,
codingpuss
Yeah, the templates I mentioned are the squeeze page templates, not the blog themes.
I’m sorry if it caused some confusion.
Best regards,
codingpuss
Hi,
Thanks for your interest in the plugin. This one is not a template but a plugin and it generates squeeze pages.
You can always setup your custom navigation bar in wordpress (i.e. select the link you want to be displayed and the ones you don’t want). There are quite many good tutorials available, this is one of them:
http://en.support.wordpress.com/menus/
There is no different between the pro and free version in terms of creating squeeze pages.
Please let me know if you need further assistance.
Best regards,
codingpuss
Forum: Plugins
In reply to: [PB Responsive Images] wp_register_script was called incorrectlyI found a solution for this problem, post here so if others developers may need it in the future.
In my case, the problem was I call the
wp_register_scriptdirectly. The solution is to group it into a functionfunction load_scripts() { wp_register_script(...); wp_register_script(...); }then:
add_action('admin_init', 'load_scripts');Then the problem went away.
Hope that helps.
Forum: Plugins
In reply to: [PB Responsive Images] wp_register_script was called incorrectlyHi guys,
Any news on the bug? I have the problem too in debug mode.
Thanks in advance
no problem, you’re welcome π
2 under video and 1 under no video. It should be 3. Could you please send me a screenshot?
Thanks RenΓ©,
I’m now changing the topic’s status to “resolved”
Let me know if you need further assistance.codingpuss
Hi all,
The plugin should be working fine. Could you guys please update to the version 1.4.8?
Please don’t forget to go to WP Lead Plus -> Settings and click on “Complete setup”.
Please send me an email if you still have problem. My email is t2dx.inc (at) gmail.com (please remove the spaces and replace (at) with @)
Best regards,
codingpuss
Forum: Fixing WordPress
In reply to: Squeeze page installation helpHi C4bbage,
Since you already have the squeeze page, simply put them into a folder then upload to your website via filezilla. For example, you domain is http://www.abc.com and you put all your squeeze page files in a folder called sqp and upload to abc.com, you can access it by going to this URL:
abc.com/sqp
Hope it helps,
Forum: Fixing WordPress
In reply to: adding a squeeze page to existing wordpress siteHi Greg,
Sure, it is possible. What you need to do is to create a custom template and copy the template file into your current theme folder. Here is the code I use in my site
<?php /* Template name: Blank Template */ ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title><?php echo the_title(); ?></title> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?></body></html>In addition, you may want to check this plugin:
http://ww.wp.xz.cn/extend/plugins/wp-lead-plus-free-squeeze-pages-creator/
I think it does pretty much all you want.
cp
Forum: Fixing WordPress
In reply to: Squeeze pageHi Eric,
what video?
Forum: Fixing WordPress
In reply to: Add Custom Squeeze page to siteHi Jim,
If you know about wordpress theme, it would be simple to create a blank page template and create your squeeze page use that template.
it could be something like this:<?php /* Template name: Blank Template */ ?> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title><?php echo the_title(); ?></title> <?php while ( have_posts() ) : the_post(); ?> <?php the_content(); ?> <?php endwhile; // end of the loop. ?></body></html>Hope it helps,
cp
Forum: Fixing WordPress
In reply to: Wise to have sqz page alone or on main themeHi Joe,
Personally, I think have a plugin that generate squeeze pages and leave the theme alone is better choice. It is a waste, IMO, to dedicate the whole site for a single squeeze page in most cases. Most squeeze page plugins are able to create squeeze pages as a page which you can set as home page later if you decide to use your whole website as a squeeze page.
I have a plugin here that I think will fit your needs:
http://ww.wp.xz.cn/extend/plugins/wp-lead-plus-free-squeeze-pages-creator/Best regards,
cp