webjunk
Forum Replies Created
-
Forum: Plugins
In reply to: iframe in main page (HELP) :(Evidently they are using Lightbox. And then they had problems and hired or tried to someone to fix it. Here is where:
http://www.freelancer.com/projects/PHP-Google-Adsense/Adsense-not-showing-Thickbox.html?utm_source=twitterfeed&utm_medium=twitterANd if you look in their code you can see how they are calling it. But doing things like that will probably kill 50-75% of your site traffic.
Forum: Fixing WordPress
In reply to: WordPress 3 Menu (wp_nav_menu) won't updateDon’t know if it matters to your problem but you are missing a comma at the end of:
‘submenu’ => __(‘Second Grey Menu Below Red Menu’, ‘crossbordershopping’),Forum: Fixing WordPress
In reply to: Nav Bar doesn't show upDo you have the Thematic Theme installed? That is required.
Is this the commercial version of the theme? Maybe you can contact the theme’s author?
Sometimes with these child themes there is a “disconnect” with the parent theme.“Skip to content” is in most themes for screen readers.
Forum: Fixing WordPress
In reply to: Nav Bar doesn't show upThe problem I think is because you are using a child theme its not making a call back for the menu.
Try placeing this into your header.php:
wp_page_menu(‘sort_column=menu_order’)Let me know if you see a menu.
Forum: Fixing WordPress
In reply to: Nav Bar doesn't show upPaste into:
http://wordpress.pastebin.ca/Forum: Fixing WordPress
In reply to: Nav Bar doesn't show upSorry. Think it might be all there but donot see a call to the menu. Must be through one of the function calls. Normally you should see:
wp_nav_menu()
that is for the menus. Could try placing this in the header.php:<div id="access" role="navigation"> <?php wp_nav_menu( array( 'container_class' => 'menu-header', 'theme_location' => 'primary' ) ); ?> </div>and see what happens or you will have to trace the functions probably in the themes functions.php
Forum: Fixing WordPress
In reply to: How to unite 2 blogs into a single one?Then you have other issues
Forum: Fixing WordPress
In reply to: WordPress 3 Menu (wp_nav_menu) won't updateWhere is the menu in the code that is not working? Are they all the same?
Forum: Fixing WordPress
In reply to: HTTP Error While Crunching /w Flash or HTML UploaderFirst try disabling plugins.
Also check the default settings in wp-admin.
Check permissions for uploads directory.
Run phpinfo() (There are plugins for it instead of a script)
See if it reports GDForum: Fixing WordPress
In reply to: How to unite 2 blogs into a single one?Have yo tried Exporting and then importing to the other.
This goes back a ways but I think someone else found they needed to place the same php5.ini in their wp-admin directory also. Try that and see if it helps.
Forum: Fixing WordPress
In reply to: Changing original admin usernameIf you are running the current version you can call it whatever you want when you install. Otherwise you would have to edit the database directly I believe. If you use a strong password, have never had an issue using Admin.
Forum: Plugins
In reply to: [Plugin: Contact Form 7] how to make tooltips?How about adding a CSS style to the field with:
a hover:Forum: Fixing WordPress
In reply to: Nav Bar doesn't show upIt appears you did not paste t entire header.php. And its missing the important parts….Try again
Forum: Plugins
In reply to: Which plugin is slowing WordPress site?There is no average size. Each person has their own preference between appearance, functionality & speed. Depends on your audience as well.
Your header_bg is very large by itself. Do you need it that big? And think its a slideshow maybe. and then others add to that. There are a lot of people still on slow connections. Can you afford or mind losing them? They are not going to wait a long time for it to load. Those plugins mentioned might help but may not. Some image files may already be compressed and there is not a lot of html to compress. Caching plugins help but really more towards loading time. And you still did not answer my other questions which after file sizes are the most important items.