English please…(Everything)
]]>When I try to register a new widget area to my Genesis child theme via Toolbox I get the following error upon activation:
Fatal error: Call to undefined function genesis_register_sidebar() in /var/domain/wp-content/plugins/toolbox/modules/add_sidebars.php on line 18
Here is the source code of my module:
<?php
/*
Module Name: Custom Sidebars
Description: Adds additional widget areas to your Genesis Child Theme. [Backend|Frontend]
Author: Studiopress
Author URI: https://my.studiopress.com/tutorials/register-widget-area/
*/
/* Sicherheitsabfrage */
if ( !class_exists('Toolbox') ) {
die();
}
/* Ab hier kann's los gehen */
/* Widget above the header */
genesis_register_sidebar( array(
'id' => 'aboveheader',
'name' => __( 'Above the Header', 'news' ),
'description' => __( 'An additional header before the original header', 'news' ),
) );
/* Hook in above the head */
add_action( 'genesis_before', 'sp_genesis_before' );
function sp_genesis_before() {
genesis_widget_area( 'aboveheader', array(
'before' => '<div class="aboveheader widget-area">',
'after' => '</div>',
) );
}
If I use the same snippet in the functions.php of my Genesis child theme, it works perfectly. So I assume there is a problem between Toolbox and Genesis? Or do I have to add something, so that it “knows” the function?
]]>Sorry, leider kann ich nur in deutsch schreiben
Hallo Sergej,
erst einmal finde ich dein Toolbox Plugin wirklich ganz gro?e Klasse und habe für meine Zwecke bereits zus?tzlich mehr als 10 Module erstellt.
Ich nutze gerade eine Multi-Site Installation (Verzeichnisse) unter Version 3.8.3
Da bisher nur eine Seite (Blog) angelegt war, hatte ich das Plugin über diese Seite aktiviert und getestet.
Nachdem ich allerdings jetzt eine 2. Seite (Blog) angelegt hatte, habe ich das Plugin in der bisherigen Seite deaktiviert und dann über die Netzwerkverwaltung für alle Seiten wieder aktiviert und bekam dabei folgende Fehlermeldung:
—
Das Plugin verursachte eine Fehlermeldung 244 Zeichen unerwartete Ausgabe w?hrend der Aktivierung. Sollte du Fehlermeldungen wie “headers already sent”, Probleme mit der Syndizierung der Feeds oder andere Fehler erhalten, versuche das Plugin zu deaktivieren oder zu l?schen.
—
Das Plugin arbeitet zwar auch hier anscheinend einwandfrei, aber die Fehlermeldung macht mir doch etwas Kopfzerbrechen.
Hast du eine Vorstellung, was der Grund für diese Meldung ist?
Ganz liebe Grü?e und vielen Dank für deine Hilfe,
DW′s Core
Hi,
this plugin rocks!
But I love to have a way to add a new modul directly from the backend.
Cheers,
Denis
I’m trying to get custom taxonomies generated at working.
They seem to register fine (show up where they are supposed to) but when trying to add a term I always get the error “you do not have the permission to do that”.
after enabling debug mode the error shows:
“trying to get property of non-object in file …/wp-admin/includes/ajax-actions.php on line 634”
using the exact same code in the function.php (blank install using twentyfourteen theme – but happens everywhere else too) everything works fine.
I hope this can be fixed since the toolbox plugin is really great!
]]>Hallo,
bei der Aktivierung des Toolbox Plugins erhalte ich folgende Fehlermeldung
Parse error: syntax error, unexpected T_FUNCTION in /home2/www/b50/ihr-teamwerk/mb/wp-content/plugins/toolbox/modules/post_shortcode.php on line 20
Eine Idee was nicht passt, danke für eine Antwort.
Gru? Michael
]]>I’ve created my own modules, for example this new module, begins with that code:
<?php
/*
Module Name: KUNSTBLOG-Snippets für NEWSCAST
Description: KUNSTBLOG-Snippets für NEWSCAST
Author: BCH
Author URI: https://der-kunstblog.de
*/
/* Sicherheitsabfrage */
if ( !class_exists('Toolbox') ) {
die();
}
Problem:
it does not show up in the plugin’s settings, there’s just a blank white field (I’ve created 2 new modules, so 2 blank fields are there):
https://i46.tinypic.com/35c0tnb.jpg
Any idea?
Thanks.
Hi,
where can I add a new “toolbox-module” as you’ve said in your docu:
“Ein weiteres Toolbox-Modul anlegen, Metadaten anpassen, den Schnipsel einfügen, für einen Bereich aktivieren.”
Your docu says not much on how to add own snippets. Could you please add this?
Thanks.
Back on February 13 2012, Automattic starting building ALL New WordPress Themes with their New starter: The _s Theme . It’s more up-to-date than Toolbox, (read their introduction article)and up to recently was very similar to the development of Twenty Twelve (postponed until WordPress 3.5.
]]>The version of html5shiv used in the toolbox theme is out of date and has a nasty bug that shows up in IE7. Paragraphs within blocks that have padding and background-color set do not display properly. The following code demonstrates the problem:
<!DOCTYPE html>
<html>
<head>
<script src="https://themes.svn.www.ads-software.com/toolbox/1.4/js/html5.js" type="text/javascript"></script>
<style>
section{
padding:10px; background-color:yellow;
}
</style>
</head>
<body>
<section>
<p>first line<br/>
second line</p>
</section>
</body>
</html>
The current version of html5shiv can downloaded from Remy Sharp or from
<!--[if lt IE 9]>
<script src="https://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
and works properly.
Please update the theme to fix this and the missing display:block issue.
Thanks/peter
How do I add a single post’s category to the header in the Toolbox theme?
What it says now:
Posted on January 21, 2012 by Nick Ottens
What I’d like it to say:
Posted on January 21, 2012 in Politics by Nick Ottens
This is the code from the functions.php:
function toolbox_posted_on() {
printf( __( '<span class="sep">Posted on </span><a href="%1$s" title="%2$s" rel="bookmark"><time class="entry-date" datetime="%3$s" pubdate>%4$s</time></a><span class="byline"> <span class="sep"> by </span> <span class="author vcard"><a class="url fn n" href="%5$s" title="%6$s" rel="author">%7$s</a></span></span>', 'toolbox' ),
esc_url( get_permalink() ),
esc_attr( get_the_time() ),
esc_attr( get_the_date( 'c' ) ),
esc_html( get_the_date() ),
esc_url( get_author_posts_url( get_the_author_meta( 'ID' ) ) ),
esc_attr( sprintf( __( 'View all posts by %s', 'toolbox' ), get_the_author() ) ),
esc_html( get_the_author() )
);
}
]]>
Hallo Sergej,
ich bastle mir grad selbst Module aus meiner functions.php. Dabei kommt ja immer eins nach dem anderen und wird getestet.
Wenn man nun eine neues Modul anlegt, wird die Liste der Tools alphabetisch sortiert. Aber dadurch verschieben sich die Positionen der Module. Und anscheinend wird ihr Aktivierungs-Status an der Position fest gemacht. So kann es sein, dass das neue Modul an die dritte Stelle gesetzt wird und alle darunter befindlichen Module den Status des nachfolgenden Moduls erhalten.
Why does this theme automatically add a paragraph tag to blog posts? Can you tell me how to remove that because its messing with some of my design?
Regards,
MJ
The following code:
/*
Resize images to fit the main content area.
- Applies only to images uploaded via WordPress by targeting size-* classes.
- Other images will be left alone. Use "size-auto" class to apply to other images.
*/
img.size-auto,
img.size-full,
img.size-large,
img.size-medium,
.attachment img,
.widget-area img,
.wp-caption {
max-width: 100%; /* When images are too wide for containing element, force them to fit. */
height: auto; /* Override height to match resized width for correct aspect ratio. */
}
in version 1.4 of the toolbox theme causes images in IE8 to be distorted. It works properly in IE9, Safari, Chrome and Firefox.
/peter
]]>Is there are reason why the toolbox theme is using H1 attributes for every entry-title & every widget-title? Isnt it better to use H2 instead?!
]]>