vahyd
Forum Replies Created
-
Forum: Plugins
In reply to: [AnythingSlider for WordPress] HTML text content as a slideHow about using Contact Form 7 plugin.
https://www.ads-software.com/plugins/contact-form-7Create a form and insert its short tag in a slide
I haven’t tried it, but after all anythingslider can slide anything.Forum: Plugins
In reply to: [Simple Fields] Settings page is corruptWhere is the link for v1.3.1
Its still v1.3 in plugin directoryForum: Themes and Templates
In reply to: if (current_user_can('edit_comment')) errorThis is the code that worked for me.
<?php if (current_user_can('edit_comment',$comment->comment_ID)) : ?> <a href="<?php echo get_edit_comment_link(); ?>" title="Edit Comment"> <img src="<?php echo get_template_directory_uri();?>/images/edit-link.png"/> </a> <?php endif;?>
I think my previous code (the code after removing the semicolon) had something to do with the server settings.
Forum: Themes and Templates
In reply to: if (current_user_can('edit_comment')) errorIt was the first line
<?php if (current_user_can('edit_comment',$comment->comment_ID) ) { ?>
I’ve got it working fine now. Will paste the code later in case someone wants to check it
Forum: Themes and Templates
In reply to: if (current_user_can('edit_comment')) errorsorry typing mistake.. semicolon was actually removed the code.
And still getting unexpected ‘{‘ errorForum: Themes and Templates
In reply to: if (current_user_can('edit_comment')) errorthanks.. but now I’m getting
syntax error, unexpected ‘{‘
now it looks like
<?php if (current_user_can('edit_comment',$comment->comment_ID) ) { ?> <a href="<?php echo get_edit_comment_link(); ?>" title="Edit Comment"> <img src="<?php echo get_template_directory_uri();?>/images/edit-link.png"/> </a> <?php } ?>
Forum: Themes and Templates
In reply to: image link for edit comment linkthanks. I tried it earlier but no success.. But now got it to work..
So I shouldif (current_user_can(edit_comment))
before the link.Forum: Fixing WordPress
In reply to: Embarrassing Errorthe problem is that you have installed wordpress (blog) to the root of your website along with your actual website’s index.html
The best thing for you to do is completely re-build your website using wordpress only.
Forum: Fixing WordPress
In reply to: Warning message on some of my blog pagestry removing your old theme from the dashboard. I think it should be ‘loook’
Else try deleting the folder ‘loook’ from and switch to default theme.Forum: Localhost Installs
In reply to: Huge Special Characters problemMay be the font specified in styles.css does not include the special characters. Have you tried changing the font.?
Forum: Fixing WordPress
In reply to: How can I manipulate the default post category?Same question with me too..
I want to show a button on category view page to add posts to current category page. If you guys found any solution pls share.
This is very important for me.
I’m going nuts here.Forum: Fixing WordPress
In reply to: Major Widget TroubleI think it’s your theme thats doing it.
Check your theme options under Appearance to see if you can disable this.Forum: Fixing WordPress
In reply to: Add a New Post button on category viewI think it should be like /post-new.php?cat_ID=2 or something like this.
I’ve gone through the post-new.php and edit-form-advanced.php on notepad but i couldn’t figure it out. I’m not too good at php.