Martin Robbins
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Virtue] Premium Version feeGreetings
I would guess there is not the limitation. However I believe it’s a question for the theme author and/or vendor.
Good Luck
Greetings
You could try Dashboard > settings > Permalinks … and click save.
Good luck
Forum: Themes and Templates
In reply to: Artisteer Theme Code for archive page.You are welcome, please mark resolved?
Greetings
Based on what I found, it appears you should add new code to accomplish your objective instead of attempting to modify existing code
I found this:
inline:59 .site-header { background: url("https://wp-themes.com/wp-content/themes/anarcho-notepad/images/outer-back-search.png") no-repeat scroll center top transparent; }It means if want to remove the image for the home page(for example), you could try adding custom css something like this:
.home .site-header { background: none; }Also I found this:
#content { background: url("images/notepad-back.gif") repeat-y scroll 0% 0% transparent; }it means you could try custom css something like this:
style.css:152 .home #content { background: none; }Good Luck
Forum: Fixing WordPress
In reply to: Not Going LiveYou are welcome
This site is under development This page indicates the webmaster has not uploaded a website to the server. For information on how to build or upload a site, <strong>please visit your web hosting company's site</strong>.It appears you are attempting to utilize a service through your hosting providor. I would suggest contact them for assistance.
Good Luck
Forum: Themes and Templates
In reply to: [Hueman] line between postsYou are welcome
I would try something like
.post-list .post { width: 100%; border-bottom: 1px solid #888; }Forum: Themes and Templates
In reply to: [Sydney] How to create a Sydney Child ThemeGreetings:
Here is the codex reference how to make child themes: https://codex.wordpress.org/Child_Themes
It seems perhaps you overcomplicated things. I usually start with only style.css and functions.php in the child theme folder.
Good Luck
Forum: Themes and Templates
In reply to: Artisteer Theme Code for archive page.You are welcome,
I think instead of
is_term()it should be
<?php is_tax( $taxonomy, $term ); ?>reference: http://codex.wordpress.org/Function_Reference/is_term (deprecated)
http://codex.wordpress.org/Function_Reference/is_taxForum: Fixing WordPress
In reply to: Moving from Free Yola Site to WordPressForum: Fixing WordPress
In reply to: Code snippet killing child pages displayYou are welcome,
Do the sidebar child pages render correctly in absence of the snippet?
If so, it means snippet modifies “the main query” and does not properly reset it.
It’s complicated, here is a reference: http://codex.wordpress.org/Class_Reference/WP_Query
Note from the reference:
Note: If you use the_post() with your query, you need to run wp_reset_postdata() afterwards to have Template Tags use the main query’s current post again.
I believe your call to get_post() is similar issue as the mentioned call to the_post() , ie after your snippet you need to call wp_reset_postdata() …
Forum: Fixing WordPress
In reply to: Can't access to external page within domainYou are welcome,
Please check this thread: https://wordpress.org/support/topic/install-wordpress-but-dont-make-it-default-landing-page?replies=4
And be sure to ask any further questions here in this thread.
Forum: Fixing WordPress
In reply to: Install WordPress but don't make it default landing pageGreat questions,
What happens when you install wordpress in a subfolder on a blank site? Does the root index file change?
Yes, that essentially is correct. A blank site would have no index file, before nor after installation of WordPress into a subfolder of the root.
If I were to install wordpress in a root folder, how would I then access it?
WordPress always is “accessed” via it’s index.php , no matter where it is installed. Generally there’s 3 possibilities:
- WordPress installed in THE site’s root directory
- WordPress installed in any subdirectory of the root directory
- WordPress installed in any subdirectory of the root directory, and with its index.php moved to the root. That’s the “promotion” scenario I mentioned above.
So if vbulletin uses its own index.php in the root, I think option 2 is you only possibility.
If vbulletin uses index.html, any of the three options are available. With options 1 or 3, you would need the WordPress redirection plugin or .htaccess rules to force requests for index.html to bypass index.php which normally has higher priority.
Forum: Networking WordPress
In reply to: Multisite and using wwwJason, I know what you mean… There’s alot of different opinions regarding the use of www at all any more.
In your example and using the WordPress and its recommendation, you would go to fiverr.com for the main site, and support.fiverr.com for the support site, and still you would never see http://www.support.fiverr.com … Even though personally I believe it is a valid and correct “sub-sub-domain”
If you dont like the ‘WordPress way”, you can always try your own despite the recommendation.
Good Luck
Forum: Fixing WordPress
In reply to: Can't access to external page within domainGreetings
One possibility is using .htaccess rules or the Redirection plugin, force apache to serve the cgi request without passing it to WordPress.
Good Luck
Forum: Fixing WordPress
In reply to: Install WordPress but don't make it default landing pageGreetings
These ideas come to you in the absence of my any knowledge regarding vbulletin.
This article should prove helpful: http://stackoverflow.com/questions/6358293/how-can-i-serve-static-pages-alongside-wp-3-0-multi-site
The gist of it is for when you already have the WordPress and want to add non-WordPress pages alongside.
In your case it’s reverse, one possibility to install the WordPress and rename the index.php to disable it front-end. Another method would be do a subfolder install of WordPress, put the redirection plugin in place and configure, then if needed promote the WordPress to appear as if at the root.
FYI if you’re really good you can write your own .htaccess rules instead of using the plugin.
Good Luck