suddensway
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection for Contact Form 7] Duplicate emails being sentHi, sorry, we were getting lots of spam registrations on the site so that’s why I added the blocker. Israel has been added to the list of countries that are ‘unblocked’ so you can see the site now.
As I say, the forms on the site all send 2 copies on submission. If I disable your plug-in then they just send the 1, as you’d expect.
I can send you admin login details separately if you need to have a look at the back end.
many thanksForum: Plugins
In reply to: [amr shortcode any widget] Plug in stopped displaying all widgetsThanks for getting back to me – I did actually resolve the issue myself in the end. An update to another plug in that effected the displaying of widgets seemed to be the issue.
fyi, I use text widgets as the content within them appears on numerous pages and gets updated occasionally – so I only have to change the text in the widgets once and it updates all the relevant pages.
Forum: Fixing WordPress
In reply to: IMAGESthe missing logo url is https://localhost/kek_argo/wp-content/uploads/2014/07/argo-png2.png so it has not been uploaded to the server as that url is on your own computer.
The url should be something like:
https://kekargo.gr/KEKARGW_TEST/wp-content/uploads/2014/07/argo-png2.pnghope this helps
KevinForum: Fixing WordPress
In reply to: Title in different position for pages and postsI’ve found the following did the trick:
body.single h1.entry-title { margin-left: 40px; }
Many thanks, you pointed me in the right direction
Kevin
Forum: Fixing WordPress
In reply to: Title in different position for pages and postsThanks Jeffery
What I really need is for the position of the title on ALL the pages to be the same (which I’ve done through css), then the the position of the title on ALL the posts to be the same – yet in a different position to the pages. If that makes sense..? ??
Kevin
Forum: Fixing WordPress
In reply to: Change password protected textOK, thanks, I have done that and not heard back from them yet. I was just hoping that someone might be able to offer a ‘generic’ solution.
Forum: Plugins
In reply to: [WP YouTube Lyte] Audio playing but video disappearedMany thanks for that – removing the line of css fixed the problem.
What I don’t understand is that line has been in place for many months and the videos have only just stopped working… never mind, I really appreciate your help on this!
Kevin
Forum: Fixing WordPress
In reply to: Adding thumbnail to search results excerptMany thanks for that. I got that to work using the plug in and expanded it to just show excerpts for categories, archives etc by using:
<?php if ( is_search() || is_archive() || is_author() || is_tag() || is_category() ) : ?>
(line 33 of content.php)Excerpts are being shown, with thumbnails (although many are not showing as in proof mode many of the image urls are external but this will be amended when the site is launched). However, and here’s the BIG problem – none of the post content itself is being displayed when you go to view the full article, there’s just the comments etc!
Any help is very welcome.
thanks
Forum: Fixing WordPress
In reply to: Adding thumbnail to search results excerptHi alchymyth
Many thanks for your comments.
No I’ve not edited the content.php file but didn’t realise you needed to set a featured image for it to appear. I set one for the latest post and it does display a large image. It’s a step in the right direction but what I’m really after is a thumbnail taken automatically from the post. In the same way the List Category Post plug in works.
Another issue with the Featured image route is that it shows both that and all the other images when displaying the categories and Archive posts…
Any thoughts?
thanks
Forum: Fixing WordPress
In reply to: Search results to show single category onlyThat did it, brilliant – I can’t thank you enough!!
Kevin
Forum: Fixing WordPress
In reply to: Search results to show single category onlyHi, many thanks for the reply.
My understanding of the above is fairly basic, and I’m learning as fast as possible!
The theme is Chameleon by Elegant themes and I’ve logged the query with them too but have had no reply.The line of code that needs changing as far as I can see is:
<input type="text" value="<?php esc_attr_e('Search this site...', 'Chameleon'); ?>" name="s" id="searchinput" />
but whether it’s as easy as using a conditional tag of some sort in the ‘value’ bit, I don’t know. I’ve tried various things without success..
K
Forum: Fixing WordPress
In reply to: Exclude thumbnail image from certain categorymany thanks for that – I got there in the end!
Forum: Fixing WordPress
In reply to: Displaying Posts in random orderHi bioshox
I’m afraid that didn’t work – posts are still being displayed by date rather than randomly.
have you any other ideas on this at all?
many thanks
KevinForum: Fixing WordPress
In reply to: Displaying Posts in random orderThanks for getting back to me bioshox but I’m not a developer at all and don’t really know how to implement this.
I found a chunk of code in the blog page template that included the query_posts phrase but it was this:
<?php $cat_query = ''; if ( !empty($blog_cats) ) $cat_query = '&cat=' . implode(",", $blog_cats); else echo '<!-- blog category is not selected -->'; ?> <?php $et_paged = is_front_page() ? get_query_var( 'page' ) : get_query_var( 'paged' ); ?> <?php query_posts("showposts=$et_ptemplate_blog_perpage&paged=" . $et_paged . $cat_query); ?> <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
Can you advise on how I could incorporate your suggestion into this at all?
To confirm, I want the posts to display in random order for posts in all categories except one (and there are many!) so was looking to use the conditional tag such as
!in_category( '14' )
Does that make sense?
many thanks again for your help
KevinForum: Fixing WordPress
In reply to: Next and previous posts in different categoriesesmi, you are a god-like genius… Thank you!