WordPress help - Ask your questions

Status
Not open for further replies.
Anybody knows where OriginalEXE is? I PM'd him, messaged him on Skype twice and emailed him twice but no response. hmm.
 
Hey guys, I was bussy last 2 weeks due to too much work here and on Elance, sorry about that. If you still did not solve your problems, post again and I will reply as usual, as I will have time, thank you.

@veheme replied on your email and in my topic, sorry.
 
what are the must have wordpress plugins that should be installed on each site/blog
for mns/niche/authority sites for adsense, amazon & etc?

also what amount of plugins would be considered a overload on plugins on each site?
 
When I update something inside the WP general settings ( Title & Description ) it doesn't get updated in the SERPS ( The old title & description is being shown in the SERPS ).

For some sites the Title & Description get's updated almost immediately to within a day while for some sites whatever I do, it remains the same even after a week.

I'm talking about sites that are ranked in the first page already.

I'm using different themes for different sites & using Platinum SEO for all sites.
So, practically there are 3 areas where I enter META TITLES & DESCRIPTION.



  1. WP- General settings
  2. Theme Settings
  3. Platinum SEO Settings


Is there a conflict between the 3? Even if so, I have updated the Titles & Meta Descriptions in all the 3 Areas. Since Meta Titles & descriptions are Important for rankings, I'm not able to bring it up the serps without getting this updated in the SERPS.

Does this also mean that G doesn't Cache the site/page? If Caching/getting google to re-index the page again can make the change, then how do I do it?

 
I am using the genesis framework with the News Child Theme and am having trouble. When I post a new blog post it appears on the homepage a week or 2 later. How can I fix this? It only happens when using this theme

THANKS!
 
Anyone with good knowledge of javascript 'rules' ?

I am having some unusual problems with an Amazon Affiliate site I am trying to get online 'my way'. Rather than get into the details just yet, I have a question (installed on WP 3.4.1 )



Are there possible problems with theme using 3 different version of jquery in one theme ? There are 3 paths with jquery, all pulling from google .. :rolleyes:
theme\page_customtabs.php {1.8.3} ...
theme\functions.php {1.6.1} ...
theme\includes\admin_functions.php {1.3.2}

I located this on google, and while it seems very thorough, I am not confident enough to use the information ..
http://wp.smashingmagazine.com/2011/10/12/developers-guide-conflict-free-javascript-css-wordpress/


On the plugin WPZonBuilder has several instances of jquery but they are all same{1.8.2} : that is why I thought to ask,
wondering if there was a big advantage to have all the versions be the same.
:confused:

TIA,
We
 
Last edited:
Thanks for creating this thread. I found Lots of information on this thread which may help me in the coming months. Thanks all. :)
 
Anyone with good knowledge of javascript 'rules' ?

I am having some unusual problems with an Amazon Affiliate site I am trying to get online 'my way'. Rather than get into the details just yet, I have a question (installed on WP 3.4.1 )

...
TIA,
We
Yes, there will certainly be the problems when you pull more than one jQuery in the website, no matter what version they are. That happens due to poor coding of themes and plugins.
 
what are the must have wordpress plugins that should be installed on each site/blog
for mns/niche/authority sites for adsense, amazon & etc?

also what amount of plugins would be considered a overload on plugins on each site?
Hmm never created niche website with amazon and clickbank, but the first plugins I install are:
WordPress SEO by Yoast and Better WP Security

Overload depends on your server configuration so I can't give straight answer to it. It also really depends on what plugins you install, but what you don't really need, don't use.
 
Really don't know, to make sure that it's not a WordPress related problem, check out the code of your website (inspect element) and check out if the description and title that you create are the right one. If yes, WP is not wrong and you should ask Google from that point.
 
I am using the genesis framework with the News Child Theme and am having trouble. When I post a new blog post it appears on the homepage a week or 2 later. How can I fix this? It only happens when using this theme

THANKS!
That is funny :) Make sure you are using latest version of both themes. Are they bought or pirated?
 
Hi buddy!

I'm using Gravity Forms on my Wordpress site. It lets you upload an image from the frontend, but I'd love to integrate the jQuery File Upload.

So far, I have a page to create a new form (as a post type), but I don't know how to make the jQuery plugin upload images within the form and set their post_parent field the actual post ID the form will create.

Any ideas?

Thank you
 
Last edited:
Yes, there will certainly be the problems when you pull more than one jQuery in the website, no matter what version they are. That happens due to poor coding of themes and plugins.

Tanks,

I will have to put on my do-list then ... lol ... see how many times I break it all while I substitute/replace versions !

Any recommendations of what to watch out for ?

We
 
I have been wrecking my brain on this for sometime: I have only found 1 tabs plugin that loads fast and also maintains size on the panel height.
When I use the shortcodes on the WP editor there is no problem with the way the page displays.


Code:
<?php echo do_shortcode('[rollover-tab name="tab2" etc etc]'); ?>


When I try to build a page template with the plugin's shortcode, there are no tabs. This seems to be the case with shortcodes for all tab plugins I have tried.


I am building tabs for holding product descriptions etc for Amazon items, so there is backfilling done 100% ok by the WPZonBuilder into the tabs if I use the WP editor, so I know it all works. Works while I do each product manually on the editor that is


My next attempt was trying to use the shortcodes as executable php in the *.html files that WPZonBuilder uses as templates using the code I found online
I tried the following suggests from http://dev.w3.org/html5/spec-author-view/the-pre-element.html but nothing prints out: do you have any experience with this <pre><code ?
I can not find any other code to do that execution of php code in a html page
I have already modified .htaccess as per http://www.build-your-website.co.uk/Starting-PHP-Part2.htm to allow code to be executed: the example is php4 .. I tried php4 & php5 with same results


This shows as expected empty tabs on a sample page { <pre><code </code></pre> removed}, but not anything at all if included in the html
Code:
    <pre><code <?php ('[rollover-tabs name="id" norollover="" border="true" margin="-2px" height="3.5in" left="1px" right="1px" scroll=""][rollover-tab name="tab1" label="Gallery" font="small"][/rollover-tab][rollover-tab name="tab2" label="Product Description" font="small"][/rollover-tab][rollover-tab name="tab3" label="Details&Features" font="small"][/rollover-tab][rollover-tab name="tab4" label="Customer Reviews" font="small"][/rollover-tab][/rollover-tabs]'); ?></code></pre>
The recommended changes in the .htaccess
Code:
# BEGIN WordPress
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>
#parsing PHP in html files
#
AddType x-mapp-php5 .html .htm
#parsing .php as .php5 files
# END WordPress


Any thoughts on how to have this work as a WP page template or ?? The plugin developer has not responded to email.


TIA for any feedback,
We
 
Hey,

Your a wordpress expert, so i got a question for you:

Is there a plugin or something so that I can make a page (not a post), to be a link directory?

I know I can make one by hand with a table, but from a maintenance point of view that's not practical.

Also I would like to add a left sidebar, but I am not a coder (but i can follow instructions) so was hoping you could tell me how to do it please?


Thanks
BB


Hi BHW, I am not very active on forums but I follow you every day, and I want to repay for everything I received from this forum and it's members.

I have noticed that many users here are struggling with WordPress and that is why I want to offer my help in this topic. I have used WordPress for a very long time and I believe I can help many of you.
Feel free to ask questions about anything, styling, hosting, domains, plugins, themes, optimization etc.

Looking forward to helping you with your WordPress issues.

OriginalEXE
 
Hi buddy!

I'm using Gravity Forms on my Wordpress site. It lets you upload an image from the frontend, but I'd love to integrate the jQuery File Upload.

So far, I have a page to create a new form (as a post type), but I don't know how to make the jQuery plugin upload images within the form and set their post_parent field the actual post ID the form will create.

Any ideas?

Thank you
It would require coding skills to do that, it's not a code of one or two lines but the whole form.
 
Hey We_Go, I think you are going a more difficult path, I have one suggestion.

Leave plugins and build tabs in yourself, that way you can use them wherever you want! Just google simple jQuery tabs and implement the solution in page template.
 
Status
Not open for further replies.
Back
Top