transom
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu item skipped due to missing menu slugThe dummy content you are uploading calls for a particular menu to be present in the theme. You’ll want to look at the source of the dummy content or check with Theme support at ThemeForest.
Forum: Fixing WordPress
In reply to: bullet, line breaks and weblink issuesIt sounds like the link markup is overlapping. You will need a little HTML experience to look at the HTML view and fix this. Alternately, remove the links from the text and re-apply the links carefully.
re: bulleting – it is likely that putting the line break between the bullets broke the markup. Again you’ll need a little HTML experience to fix the markup.
Forum: Fixing WordPress
In reply to: LTS Compliance?You are likely to need to need a custom plugin. A quick search of Google failed to show any plugins that work with topproducer.
LTS compliant isn’t a meaningful term. I can’t find any reference to a standard.
Forum: Fixing WordPress
In reply to: Private Pages/Posts Not DisplayingBe sure that you are logged out before checking the link.
What happens when you click on the link?
Forum: Fixing WordPress
In reply to: Dynamic PagesAlternately, you could use the page slug to pull up the right image. In your page.php file, you could include something like this inside the loop:
<?php global $post; $page_name = $post->post_name; ?><img src="<?php bloginfo('template_url'); ?>/images/<?php echo $page_name;? >.jpg" />will insert an image with the page_slug name(.jpg) from the images folder in the theme directory
Forum: Fixing WordPress
In reply to: Automation in PostingYour needs are a bit specific to point you to an appropriate tutorial. Although, you might find any of the tutorials on creating a theme sufficient if you are comfortable with programming with PHP.
You can probably get this completed inexpensively by posting the project at wpquestions.com or jobs.wordpress.net
Forum: Fixing WordPress
In reply to: All pages display as the indexI started looking at your site and saw your problem. And then the problem disappeared, but the shortcodes for wp-e-commerce stopped working.
My first, best guess is that you need to reset the wp-e-commerce paths. Go to Store -> Settings -> Admin and click on the link at the bottom of the page.
Forum: Fixing WordPress
In reply to: SearchYou might find this plugin useful – http://wordpress.org/extend/plugins/search-by-category/
That makes sense – 755 is all the permission that is required (there is never a need to execute an uploaded file).
What doesn’t make sense is why your setup is not correctly finding the TMP file. Have your tech install a phpinfo.php file on your site and confirm that the PHP.ini setup is correct.
Forum: Fixing WordPress
In reply to: Error after changing the URLs in General SettingsIf you can edit your wp-config.php file – you can put in the correct settings for
WP_HOME (where your site is located – e.g. http://domain.com ) and
WP_SITEURL (where your WordPress core files are located)For more info: see the codex
A missing temporary folder is a hosting issue. This isn’t something you can likely fix (securely) via WordPress.
Forum: Fixing WordPress
In reply to: Restricting Category AssignmentTake a look at the Role Scoper or Member (by Justin Tadlock) plugins for better controls.
Forum: Fixing WordPress
In reply to: Querying Posts Using CategoriesYou want use “category__and” (double-underlines) e.g.
array( ‘category__and’ => array( #, #) )Forum: Fixing WordPress
In reply to: Having trouble accessing my old site, login page seems to be missingLooks like a server configuration issue. It isn’t recognizing PHP files as executable for that directory.
Forum: Fixing WordPress
In reply to: WP link on other site posts ALL CSS codeSomewhere in your theme is the CSS code. From outside it looks like it is in the header.php file
Where you see #header – you would insert <style> tag in front, and </style> at the end of the css.
You may want to put the source on Pastebin so that specific advice can be provided.