Marcomail
Forum Replies Created
-
Forum: Plugins
In reply to: why this little code don’t work ??I must add a “}” at the finish of the code ?
Forum: Plugins
In reply to: why this little code don’t work ??Maerk i’ve truncated the php function to post here, it is correct.
The error is in the upload.php file, but i’ve copied the same function from iimagebrowser.php file…the elements are all closed correctly.
is it possible the script can’t read this
if($_REQUEST['action'] == "upload"){
Forum: Plugins
In reply to: Question for Advanced Developersotto42 could you develop a custom plugin for me ? I think is simple
Forum: Fixing WordPress
In reply to: insert the post id into another functionI would pass the post_id here:
function rating($id) {
$id must be the post_id
How can i do ?
Forum: Plugins
In reply to: submit draft but not login in the dashboardbump
Forum: Plugins
In reply to: Add image in the excerptThe content of the post is different from the Excerpt, i have an image in the excerpt to describe the entire article…i would have a way to insert image in the excerpt like in the description ??
Forum: Plugins
In reply to: Add image in the excerptIn the Excerpt i have a custom image, it’s not part of the description…i would have an image editor to add image in the excerpt and not add it manually
Forum: Fixing WordPress
In reply to: Wp-rss2 don’t work with this permalink [Bug]I don’t know where is the problem…if i extract the files from the .rar and upload on the server the wp-rss2.php works….after i modify the file with dreamweaver it doesn’t work…sometimes i try to connect you and the first/second time works, if i go to the homepage and try to return on the feed it doesn’t works :(((
What is the problem ?
Forum: Themes and Templates
In reply to: linking images to postsThis plugin works only with the original image uploader or also with IImageBrowser ?
Forum: Fixing WordPress
In reply to: Wp-rss2 don’t work with this permalink [Bug]i’m the only with this problem ??
Forum: Fixing WordPress
In reply to: search functionBut if someone try to search “hu” should find result like “hungarian” “human”, not “help us”
Forum: Fixing WordPress
In reply to: Insert permalink in a code functionhelppp
Forum: Fixing WordPress
In reply to: Search work in subcategories ?i have solved, i’ve created the search.php template ??
Forum: Fixing WordPress
In reply to: Search work in subcategories ?i think the problem is this:
<?php $wp_query->query_vars[“cat”] = 14; ?>
<?php $wp_query->get_posts(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>i have inserted this code in the index to show only a specific category, but now the search doesn’t work correctly.
how can i do ?
Forum: Fixing WordPress
In reply to: Show Full Post if There is No Excerpt.i would use the same system in my blog…how can i modify the loop code in the archive ?
<?php while (have_posts()) : the_post(); ?>
<?php the_content('Read on »'); ?>
<h2 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
<div class="date">Published on <?php the_time('l') ?>, <?php the_time('F') ?> <?php the_time('jS') ?>, <?php the_time('Y') ?> | <?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments')); ?> <?php wp_link_pages(); ?> <?php edit_post_link('Edit'); ?> </div>
<!--
<?php trackback_rdf(); ?>
--><?php endwhile; else: ?>
<h2>Not Found</h2>
<p><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
<?php endif; ?>