Aboibrahim
Forum Replies Created
-
it worked again by this solution !!
it was a nightmare for methe new plugin doesn’t work ,it have an error ,so I advise to use this solution.
Thanks Thanks Thanks π <3
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionI read the code again and understand the function that I should use
it is voce_error_log()Thank you again MR. csloisel
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionWhen I used error_log(); , no thing happened and no post has been inserted
Example
error_log( ‘error title’ , ‘error details’ , array( ‘Youtube’ ) );However when I use function_exists(‘error_log’) , I found that the function has already set.
please help me !!
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionthis isn’t working ,, I’ve tried ,,,
N.B :: I can add the tag by manually add new post in “Logged Errors” page.
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionI used wp_insert_post() and that is all my need,,
only one problem ,, that I can’t add a tag and it is very important
I plan to use the tag additionally to specifiy the post id where the error ocurr .Forum: Plugins
In reply to: need a plugin that show notification by a certain functiondid you mean to use wp_insert_post() to make a new notice ?!!
I thought that you made a simple function to do that.Thank you π ,,,
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionThank you very much ,, your plugin looks wonderfull !!!
I activate it in my wordpress but I not understand what function should i use now to create new notice ?!!
Thank you again
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionI aim to know the post that contain the problem.
the notices in dashboard is a bad idea For my case because the number of problems is great.
so , what did you mean about ” Another option would be to create a custom post type for admin notices “
How can I do this ?!
Thank you
Forum: Plugins
In reply to: need a plugin that show notification by a certain functionThank you ,, it seems it is the only solution in this time.
Thanx very much
Forum: Fixing WordPress
In reply to: how to display only the βuser-supplied excerptβ if it foundThanx very much ,,, it works as I need
I will post in support of my theme from now !!
Forum: Fixing WordPress
In reply to: How to add a general variable or constant to all postsI mean where to set it ,,, in function php or css or ,,,
and how can i make this thing and use itForum: Fixing WordPress
In reply to: How to show only posts names in category page ?!!(resolved)
Forum: Fixing WordPress
In reply to: How to show only posts names in category page ?!!Thanx very much I found in theme option this property that diplay a small description ,,, the content.php already become as you write
I don’t want description but no problem I learned before usefull thing that I will write in the begining of post by small white colour that won’t appear in the post but appear in discription.
The problem is solved
Thanx for alchymyth ,,,
Thanx for all ,,,Forum: Fixing WordPress
In reply to: How to show only posts names in category page ?!!I am using theme “Dynamic News Lite”
when i try to edit any thing at this line
get_template_part( 'content', $theme_options['posts_length'] );all content of category.php
<?php get_header(); ?> <?php // Get Theme Options from Database $theme_options = dynamicnews_theme_options(); ?> <div id="wrap" class="container clearfix"> <section id="content" class="primary" role="main"> <h2 id="category-title" class="archive-title"> <?php printf(__('Category Archives: %s', 'dynamicnewslite'), '<span>' . single_cat_title( '', false ) . '</span>'); ?> </h2> <?php if (have_posts()) : while (have_posts()) : the_post(); get_template_part( 'content', $theme_options['posts_length'] ); endwhile; dynamicnews_display_pagination(); endif; ?> </section> <?php get_sidebar(); ?> </div> <?php get_footer(); ?>[please review http://codex.wordpress.org/Forum_Welcome#Posting_Code for posting code]