bytesforall
Forum Replies Created
-
I had not thought about that third party library. New version uploaded to .org
@wikiknowledgee: Sorry for my tone. I was fairly sure my own code was o.k. but had not thought about 3rd party libs.
Yes, in the backend
New user account, first post, 3 lines of generic text that can be found thousand times all over the web, without any substance.
Looks like a copy & paste trolling attempt to me.
Forum: Themes and Templates
In reply to: how to remove header and sidebars?In the theme options add a CSS Insert
body.home td#header { display: none }
Forum: Themes and Templates
In reply to: editing the sidebarUse a widget to add content to a sidebar. Put the content into a widget and place the widget in a sidebar.
Forum: Themes and Templates
In reply to: Tables used for layoutThe people using Atahualpa are actually very smart, because their site will not fall into thousand pieces in IE6 while providing a fluid layout with min and max width, auto image resizing and wrapping long strings.
Atahualpa is like it is on purpose, not because the developer didn’t know CSS well enough. Version 2 was a “Holy Grail” CSS only layout, in version 3 it evolved beyond that. If you look closely you’ll see that it’s not just “using a table”. It’s a whole new technique. If you can find something better on the internet I’ll happily implement.
Forum: Fixing WordPress
In reply to: Can you add a home link to atahualpaYou would have to edit functions/bfa_header_config.php and replace
$page_menu_bar .= '"><a href="' . get_option('home') . '/" title="' . get_option('blogname') . '">' .
with
$page_menu_bar .= '"><a href="/" title="Your Title...">' .
And at Atahualpa Theme Options -> Page Menu Bar -> Home link in Page Menu Bar, put “Home” or another word/phrase as the link anchor text
Forum: Themes and Templates
In reply to: No dotted borders? Taller navigation links?Put your styles into Atahualpa Theme Options -> HTML/CSS Inserts -> CSS Inserts, instead of manually editing style.css
Forum: Fixing WordPress
In reply to: Fatal error: Call to undefined function: get_search_query()In bfa_header_config.php replace
<div class="searchbox-form"> <input type="text" class="text inputblur" onfocus="this.value=\''. (get_search_query() ? get_search_query() : '' ).'\'" value="' . (get_search_query() ? get_search_query() : $bfa_ata['searchbox_text'] ) . '" onblur="this.value=\''.(get_search_query() ? get_search_query() : $bfa_ata['searchbox_text'] ). '\'" name="s" /> </div>
with
<div class="searchbox-form"> <input type="text" class="text inputblur" name="s" /> </div>
I’ll fix this in the next theme version for WP 2.2
Forum: Fixing WordPress
In reply to: Post Body Content Not DisplayingIt’s something in the post The Influential Web 2.0 Expo Concludes
Forum: Themes and Templates
In reply to: bold category patent in atahualpa themeAdd this through HTML/CSS Inserts -> CSS Inserts
div.widget-categories ul li { font-weight: bold; } div.widget-categories ul li ul li { font-weight: normal; }
Forum: Plugins
In reply to: Capatibility with xLanguage pluginI was using lower level get_…. functions in some places where plugins cannot hook into. This should be fixed for the most part in 3.2.1 which is coming within a few days
Forum: Fixing WordPress
In reply to: One sidebar to go to bottomYes there’s a thread about this here https://forum.bytesforall.com/showthread.php?t=330
Forum: Themes and Templates
In reply to: Page order changing contentWhich page, which sub page. More details please
Forum: Fixing WordPress
In reply to: script – bytesforall connection?Yes, it is checking whether you’re running the current version and will display a message if an update is available.
You can always get another theme if you find that questionable or whatever, instead of creating a false rumor that I might have put malicious code in there (“why … trying 2 connect … all the extra code”).
And since you mention the removal of “all the extra code”: GPL is not Public Domain, it is still a license, and copyright applies. Make sure you don’t remove the copyright notices in the source code.