essezeta
Forum Replies Created
-
You can solved it via add custom CSS to tabs
Me too!!! I have the same problem you resolved for @nailladynam.
Can you explane what mods we need in css in order to get a solution?Many many thanks and… you plugin is great!
yessss, scribu…
in dev version are fixed…many many thanks
hl
Forum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page contentyes… it work…
is a way… thanks… ??just is a bit more complicated… but works…
very very thanks…a question:
why nicedit strips my paragraphs tags when i save my input?of course can’t a P inside a SPAN before and some P inside a P after…
but some BR could stay everywhere…how would do it? have you time to post a solution? i know is very simple… for you :p
anyway… thank…
hansForum: Plugins
In reply to: [Plugin: Front-end Editor] editable parts in page contenthi everyone…
greeeeeeat plugin…can i continue this discussion?
`<div>[editable]The editable text[/editable]</div>
More content here…`
why not?
that make possible creating a template editable just in some element of specific and dinamic content…eg.
if i need ask my users about list of questions…in my post i can write something like below (and user could just answer without corrupting my text):
<p><span>QUESTION:</span> Who was the man that bla bla bla bla bla bla bla bla?<p> <div><span>ANSWER:</span> [editable]The editable text[/editable]</div> <p>other content</p> <p><span>QUESTION:</span> Who was the man thatbla bla bla bla bla bla bla?<p>
other ways???
there is a way that works just now???thanks and regards,
hanslukas
(sorry for my english :p)Forum: Fixing WordPress
In reply to: Customize Administration Panelsthank you very much, pengki
you make me do it…
from line 34 to the end of post-new.php i changed code like below, than, if user are not admin, he get a modificated version of SubPanel displayed by inclusion of mod_of_edit-form-advanced.php:
<?php // Show post form. global $userdata; get_currentuserinfo(); $post = get_default_post_to_edit(); if ('10' == $user_level) { include('edit-form-advanced.php'); } else { include('mod_of_edit-form-advanced.php'); } include('admin-footer.php'); ?>
thank you,
regards
?? ??Forum: Fixing WordPress
In reply to: create a monthly navigationhere my code for index.php…
look at comments
thank averyone ??<?php get_header() ?> <div id="wrapper" class="index"> <div id="content"> <!--post titlecustom query code check for cmonth added by the monthly nav --> <?php $cmonth = $_GET["cmonth"]; ?> <?php if($cmonth==""){$cmonth = 0;} //get the month minus the offset of cmonth $current_month = date('m', strtotime($date.'-'.$cmonth . 'months' )); //get the year minus the offset of cmonth $current_year = date('Y', strtotime($date.'-'.$cmonth . 'months' )); //make the query query_posts("monthnum=$current_month&year=$current_year&order=DESC"); ?> <!--set a parameter i as 1 this helps to identify the first post --> <?php $i=1 ?> <!--loop starts --> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <!-- display the month and year at the top of the page --> <?php if($i=='1'){echo ' <h1>'; the_time('F Y'); echo '</h1> ';} ?> <!--post title --> <h2><?php the_title(); ?></h2> <!-- post content --> <?php the_content(__('Read more'));?> <!-- increase i through the loop --> <?php $i++; ?> <?php endwhile; else: ?> <?php _e('Sorry, no posts matched your criteria.'); ?> <!-- end the loop --> <?php endif; ?> <!-- COMMENT for jonimueller till here the script works... code below (navigation month by month) i can't see it on my page... why? can you find some error? --> <!-- set values for the next and previous cmonth --> <?php $cmonth_num_plus = $cmonth + 1; ?> <?php $cmonth_num_minus = $cmonth - 1; ?> <!-- set up a way to check the first day --> <?php $cmonth_check = $current_month-$cmonth; ?> <!--set the date that your blog starts from there should be no blog posts earlier than this date in this example the start date is sept 2007 the month is represented by a number --> <?php $start_month = 5; ?> <?php $start_year = 2008; ?> <!--set the divider between the links --> <?php $divider = ' | '; ?> <!-- if the previous month exists display the 'previous' link --> <?php if($current_year >= $start_year && $cmonth_check>$start_month){ echo '<a href="'.get_bloginfo('url').'/?cmonth='; echo $cmonth_num_plus.'">« Previous Month</a>'; } //if there is a 'previous' and 'next' display the divider if($current_year >= $start_year && $cmonth_check>$start_month && $cmonth>0) {echo $divider;} //if its not the current month display the 'next' link if($cmonth>0){ echo '<a href="'.get_bloginfo('https://localhost/ildiavoloa4').'/?cmonth='; echo $cmonth_num_minus.'">Next Month »</a>'; } ?> </div><!-- #content --> </div><!-- #wrapper --> <?php get_sidebar() ?> <?php get_footer() ?>
Forum: Fixing WordPress
In reply to: create a monthly navigationhi jonimueller…
i did it…look at your email… i sent you my index.php
than we can post solution…
thank you for interest… ??
hanslukas