jacobuid
Forum Replies Created
-
Forum: Networking WordPress
In reply to: Admin bar 'My Sites' path is wrongok, this is actually a bug in the WordPress Core files… but i dont have time to file a bug and get it fixed…
you need to go to “/wp-includes/link-template.php” search for “network_admin_url”
here is the block of code you are looking for:
[Moderated]
the problem is that the path of the network is staticly set as “wp-admin/network/” this has to be changed to allow for the custom sub-folder that you installed your WP files.
the fix is inside the code below… replace the above code with the code below:(this new code uses the admin_url() function to set the path relative the the custom sub-folder you instaled WP in)
[Moderated]
Forum: Themes and Templates
In reply to: Problems with The Columnistif you cant find it in the Admin part of WP, look in the header.php…
Forum: Themes and Templates
In reply to: How do I change the line below my menu???add to that code what i had above, the :
border-bottom: 1px solid #DDDDDD;
you can delete any of the box-shadow lines…
Forum: Themes and Templates
In reply to: How do I change the line below my menu???why don’t you let me know what exactly did step-by-step, and ill try to see what went wrong…
Forum: Themes and Templates
In reply to: How do I change the line below my menu???because you didn’t do what i instructed, the css styles i told you to replace are still there…
i am unfamiliar with the function is_qa_page() and cant seem to find it online anywhere, do you have a link to documentation on this function?
Forum: Themes and Templates
In reply to: Updated ThemeYea, to be on the safe side, it couldn’t hurt… ??
Forum: Themes and Templates
In reply to: How do I change the line below my menu???in your styles.css file, search for:
-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;it will be on line 541 inside the #access{} selector.
and replace it with “border-bottom: 1px solid #DDDDDD;”
Forum: Themes and Templates
In reply to: Problems with Origami themedo you have access to your Web Root Directory? the folder where you have other folders like: wp-admin, wp-include, and wp-content?
if you do navigate to “\wp-content\themes” and delete the theme.
Forum: Themes and Templates
In reply to: color of sloganAdd to your CSS file:
#branding .blog-description { color: #??????; }
Replace ?????? with color you want…
Forum: Themes and Templates
In reply to: Footer – shows up on the right only on Firefox!add “
clear: both;
” to<footer>
element in your styles.css on line 97Forum: Themes and Templates
In reply to: Exporting a ThemeContact WordPress.com Support, this isnt WordPress.com… lol
Forum: Themes and Templates
In reply to: [Eclipse] [Theme: Eclipse] PHP error message need helpWhat is your website address? I cant help you until i look at your site…
Forum: Themes and Templates
In reply to: Updated ThemeActually this isn’t a Noob question, it depends on the theme, since the theme is just upgrading to a newer version, im sure the Developers, developed the upgraded theme so that it will not mess with widgets & widget names. but in any case, if you were to instal a different theme the widgets would be in different areas, and have different content in them… based on their names…
if (!qa_page()) { require_once(GABFIRE_FUNCTIONS_PATH. '/review-options.php'); require_once(GABFIRE_FUNCTIONS_PATH . '/custom.php'); require_once(GABFIRE_FUNCTIONS_PATH . '/shortcodes.php'); require_once(GABFIRE_FUNCTIONS_PATH . '/post-types.php'); }
This may work not sure…