Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
In reply to: Custom Taxonomy change text "Category Archive" on Category pages to be the Category Title
July 21, 2012 at 10:02 pm #30759function graphene_filter_gettext( $translated, $original, $domain ) {
$strings = array(
'Category Archive: <span>%s</span>' => '<span>%s</span>',
'%1$s Archive: %2$s' => '%2$s',
);
if ( ! empty( $strings[$original] ) ) {
$translations = &get_translations_for_domain( $domain );
$translated = $translations->translate( $strings[$original] );
}
return $translated;
}
add_filter( 'gettext', 'graphene_filter_gettext', 10, 3 );Admin
What about just using the
graphene_adsensehook? It’s inincludes/theme-loop.php.Admin
Moved to Support. Please post in the correct section next time.
As for your issue, try going to Graphene Options > Display > Column Width Options, delete all the width values in that option box and save the settings.
Admin
Try this:
.homepage_pane {
margin: 20px 10px 15px !important;
}
.homepage_panes .alpha {
clear: none;
}
.homepage_panes .omega {
float: left;
margin-right: 10px;
}
#container .two-columns .homepage_pane {
width: 30% !important;
}You might also need to set a fixed height for the panes.
Admin
If you’re using Graphene theme, you don’t need to add code to anything, it has already been taken care of for you.
Admin
I just tried the feature on my local dev server and it’s working properly. Try turning on WP_DEBUG to see if there’s any error notices being thrown out?
Admin
Moved to Support. Please post in the correct section next time.
As for your issue, it seems that the page stops loading right after this block of code:
<script type="text/javascript">
function dtauthorpe(){
var productElement = document.getElementById("dtauthor_tracking");
if (productElement == null)
{
document.getElementById("authorprofilebox").innerHTML = " ";
}
}
</script>
<script type="text/javascript">
function dtpixell(){
var productElement = document.getElementById("dtpixell");
if (productElement == null)
{
document.getElementById("authorprofilebox").innerHTML = " ";
}
}
</script>It might have been added by a plugin that you use, so try turning off all plugins and see if the issue is resolved. Otherwise, open your site’s
wp-config.phpfile and change the value forWP_DEBUGfromfalsetotrueso that error notices are displayed on the site.Admin
That Auction theme is a theme, so no, there’s no easy way you can use it with a Graphene theme, since you can’t use two completely separate and different themes and simply join them together. You will have to port over all the auction features from the auction theme into Graphene theme, which is what they’re proposing to do for you.
Admin
Add this to the theme’s Custom CSS feature:
.bgimage-excerpt .slider-entry-wrap {
background: rgba(256,256,256,0.8);
}
.bgimage-excerpt .slider_post h2 a,
.bgimage-excerpt .slider_post h2 a:visited {
color: #000
}
.bgimage-excerpt .slider_post_entry p {
color: #333
}Admin
Graphene Options > Slider > Slider display style > Background image and excerpt.
