ireneC
Aangemaakte reacties
-
Forum: Installatie WordPress
In antwoord op: downloaden, uploaden, kopie maken van site, het lukt NIET!!!Nou, ben heel klein beetje opgeschoten.Instellingen staan zoals in andere site en toch is ie anders.
Zit een soort Helpdesk achter het thema en daar ben ik doorheen aan het spitten.
Ik heb het logo nu op de goede plaats.(wordt nog vervangen)
Maar nu wil ik de zien ‘Iets te vieren….’ groter hebben.
Waar moet ik dat in doen?Een belangrijkere vraag is hoe ik op die pagina kom als je http://www.dezoetesuikertoef.nl aanklikt.
Ik zie dan een pag die ik niet in het editdeel zie. dit moet de homepag gaan worden.
Als ik erbij kan komen tenminste.Forum: Installatie WordPress
In antwoord op: downloaden, uploaden, kopie maken van site, het lukt NIET!!!Ik dacht in eerste instantie ook dat het daaraan lag maar volgens mij is dat niet zo. Gisteren heb ik namelijk een keer alles overgezet en toen was het ook niet goed.
Daarna overigens weer weg gehaald hoor. Staat nu inderdaad nog niet goed.Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetJa, zet ‘m op resolved.
Tot de volgende vraag 😉Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetIk snap nu ook wanneer ze het hebben over regel nr…..
Begreep nooit hoe ze daar nou aan kwamen maar nu weet ik het.
🙂Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetDank je wel!!
Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetEn hij doet het!!!!
Super!
Ik heb zolang naar die codes zitten turen opzoek naar de kleur. Maar ja, als ie er niet in staat dan kan ik tot in de eeuwigheid blijven turen.Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetDus toch goed gezien 😉
Code helemaal onderaan plakken?Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetscript src=’http://pastie.org/4674962.js’></script>
Bedoel je dit??
Volgens mij is dit de css code maar ik zie hier geen kleur in staan.
Toch?Forum: Thema en CSS/opmaak
In antwoord op: Tekstkleur aanpassen in widgetWebsite heeft even een poosje stil gelegen vandaar mijn hele late reactie op jouw antwoord.
Wat is pasrtie.org??
Echt nog nooit van gehoord.Ik neem aan dat je het CSS bestad van de widget bedoelt?
Daar heb ik in gekeken maar zie ik ook geen kleurcode staan.
Maar dat zal ongetwijfeld mijn onkunde zijn hoor.Forum: Thema en CSS/opmaak
In antwoord op: Volgorde berichten in blogDank!!
Forum: Thema en CSS/opmaak
In antwoord op: Volgorde berichten in blogGebruik geen specifieke widget. Maak gebruik van de optie die in het theme zit.
Forum: Thema en CSS/opmaak
In antwoord op: Volgorde berichten in blogZou zo even niet weten welke widget het is. Ik ga kijken of ik er achter kan komen.
Forum: Algemeen WordPress
In antwoord op: read more button, krijg 'm niet aan de praatIn your website I see two sections of testimonials.. the section of the theme is: http://yourdomain/wp-admin/edit.php?pos … stimonials and for the widget of the theme, you need to change and add the tag more in the posts of this section.
Instead, the second section is in: http://yourdomain/wp-admin/admin.php?pa … als-widget this section is not the theme.
Waar moet ik nou wat aanpassen??
Forum: Algemeen WordPress
In antwoord op: read more button, krijg 'm niet aan de praatDan gaan we dat even anders doen 😉
Try to get the file inside the archive attached and replace it in wp-content/themes/beauty-premium/includes/widgets/. The file changed is testimonials.php.
<?phpclass testimonials extends WP_Widget
{
function testimonials()
{
$widget_ops = array(
‘classname’ => ’testimonial-widget’,
‘description’ => __(‘Add a slider testimonial on your widget which link a category to show the contents.’, TEXTDOMAIN)
);$control_ops = array( ‘id_base’ => ’testimonial-widget’ );
$this->WP_Widget( ’testimonial-widget’, ‘Testimonial Widget’, $widget_ops, $control_ops );
}function widget( $args, $instance )
{
extract( $args );/* User-selected settings. */
if( !isset( $instance[’title’] ) )
$instance[’title’] = ”;$title = apply_filters(‘widget_title’, $instance[’title’] );
$test_fx = isset( $instance[’test_fx’]) ? $instance[’test_fx’] : ‘fade’;
$test_easing_fx = isset( $instance[’test_easing_fx’]) ? $instance[’test_easing_fx’] : false;
$test_timeout_fx = isset( $instance[’test_timeout_fx’]) ? $instance[’test_timeout_fx’] : 5000;
$test_speed_fx = isset( $instance[’test_speed_fx’]) ? $instance[’test_speed_fx’] : 500;
$test_n_items = isset( $instance[’test_n_items’]) ? $instance[’test_n_items’] : 5;
$size = 32;$test_posts = new WP_Query(“post_type=bl_testimonials&posts_per_page=$test_n_items”);
if( $test_posts->have_posts() )
{
echo $before_widget;if ( $title ) echo $before_title . $title . $after_title;
echo ‘<div class=”testimonial-text”>’;
echo ‘- ‘;
while( $test_posts->have_posts() )
{
$test_posts->the_post();global $more, $post;
$more = 0;echo ‘
- ‘;
echo ‘‘;
the_content();
the_title( ‘[‘, ‘ ]‘ );
echo ‘‘;
echo ‘
‘;
}
echo ‘
‘;echo ‘<div class=”pagination p-testimonial”></div>’;
echo ‘</div>’;$easing_attr = ”;
if( $test_easing_fx ) $easing_attr = “easing: ‘$test_easing_fx’,”;$script = “<script type=\”text/javascript\”>
jQuery(document).ready(function($){
$(‘.testimonial-widget ul’).cycle({
fx:’$test_fx’,
$easing_attr
timeout:$test_timeout_fx,
speed:$test_speed_fx,
pager:’.p-testimonial’
});
});
</script>”;echo $script;
echo $after_widget;
}
wp_reset_query();
}function update( $new_instance, $old_instance )
{
$instance = $old_instance;$instance[’title’] = strip_tags( $new_instance[’title’] );
$instance[’test_n_items’] = $new_instance[’test_n_items’];
$instance[’test_fx’] = $new_instance[’test_fx’];
$instance[’test_easing_x’] = $new_instance[’test_easing_fx’];
$instance[’test_timeout_fx’] = $new_instance[’test_timeout_fx’];
$instance[’test_speed_fx’] = $new_instance[’test_speed_fx’];
return $instance;
}function form( $instance )
{
global $icons_name, $fxs, $easings;/* Impostazioni di default del widget */
$defaults = array(
’title’ => ‘Testimonials’,
’test_n_items’ => 5,
’test_fx’ => ‘scrollLeft’,
’test_easing_fx’ => FALSE,
’test_timeout_fx’ => 8000,
’test_speed_fx’ => 300
);$categories = get_categories(‘hide_empty=1&orderby=name’);
$wp_cats = array();foreach ($categories as $category_list )
{
$wp_cats[$category_list->category_nicename] = $category_list->cat_name;
}$instance = wp_parse_args( (array) $instance, $defaults ); ?>
<p>
<label for=”<?php echo $this->get_field_id( ’title’ ); ?>”>Title:
<input type=”text” id=”<?php echo $this->get_field_id( ’title’ ); ?>” name=”<?php echo $this->get_field_name( ’title’ ); ?>” value=”<?php echo $instance[’title’]; ?>” class=”widefat” />
</label>
</p><p>
<label for=”<?php echo $this->get_field_id( ’test_n_items’ ); ?>”>Items:
<select id=”<?php echo $this->get_field_id( ’test_n_items’ ); ?>” name=”<?php echo $this->get_field_name( ’test_n_items’ ); ?>”>
<?php
for($i=1;$i<=20;$i++)
{
$select = ”;
if($instance[’test_n_items’] == $i) $select = ‘ selected=”selected”‘;
echo “<option value=\”$i\”$select>$i</option>\n”;
}
?>
</select>
</label>
</p><p>
<label for=”<?php echo $this->get_field_id( ’test_fx’ ); ?>”>Effect Slider:
<select id=”<?php echo $this->get_field_id( ’test_fx’ ); ?>” name=”<?php echo $this->get_field_name( ’test_fx’ ); ?>”>
<?php
foreach($fxs as $fx)
{
$select = ”;
if($instance[’test_fx’] == $fx) $select = ‘ selected=”selected”‘;
echo “<option value=\”$fx\”$select>$fx</option>\n”;
}
?>
</select>
</label>
</p><p>
<label for=”<?php echo $this->get_field_id( ’test_easing_fx’ ); ?>”>Easing effect:
<select id=”<?php echo $this->get_field_id( ’test_easing_fx’ ); ?>” name=”<?php echo $this->get_field_name( ’test_easing_fx’ ); ?>”>
<?php
foreach($easings as $easing)
{
$select = ”;
if($instance[’test_easing_fx’] == $easing) $select = ‘ selected=”selected”‘;
echo “<option value=\”$easing\”$select>$easing</option>\n”;
}
?>
</select>
</label>
</p><p>
<label for=”<?php echo $this->get_field_id( ’test_timeout_fx’ ); ?>”>Timeout effect (ms):
<input type=”text” id=”<?php echo $this->get_field_id( ’test_timeout_fx’ ); ?>” name=”<?php echo $this->get_field_name( ’test_timeout_fx’ ); ?>” value=”<?php echo $instance[’test_timeout_fx’]; ?>” size=”4″ />
</label>
</p><p>
<label for=”<?php echo $this->get_field_id( ’test_speed_fx’ ); ?>”>Speed Animation (ms):
<input type=”text” id=”<?php echo $this->get_field_id( ’test_speed_fx’ ); ?>” name=”<?php echo $this->get_field_name( ’test_speed_fx’ ); ?>” value=”<?php echo $instance[’test_speed_fx’]; ?>” size=”4″ />
</label>
</p>
<?php
}
}?>
Bovenstaande heb ik dus gedaan en toch lukt het niet.
Forum: Algemeen WordPress
In antwoord op: read more button, krijg 'm niet aan de praatHeb die vraag zelf al gesteld(heb een link boven je laatste antwoord gepost)Maar je moet zeker ingelogd zijn om die te kunnen lezen?
De testimonials moeten op het cursusdeel van de site zichtbaar zijn. Op het douladeel heb ik weer andere testimonials. Wil die twee echt van elkaar gescheiden houden.
- ‘;