gdgraphics
Forum Replies Created
-
Forum: Reviews
In reply to: [Astra] InterferingThank you for replying. I will email you details.
It’s on a cloned version of a live website that I am running on my local MAMP server. There is also a pagebuilder – Elementor which may also be causing a problem. Basically Javascript events attached to links on tabs are not firing.Forum: Plugins
In reply to: [WPCustom Category Image] Seems not working since 4.5Forum: Themes and Templates
In reply to: Transparent Menu/HeaderIt looks to me as though you can create some custom CSS within the theme.
This then gets added to the head of the webpage below the link to the CSS file so any styles you create will take precedence over existing styles.
If this is the case then insert the following:header {background: rgba(0, 0, 0, 0) none repeat scroll 0 0;}
This will then give you a transparent header area.
Have fun
GrahamForum: Themes and Templates
In reply to: [Padhang] Move logo positionDo you have a link to a live site using this theme?
Its always possible to customise a WordPress theme by creating a child theme and making your amendments in there.
Have fun
GrahamForum: Themes and Templates
In reply to: Search Function on Header, Aligned RightHi
it appears as though there is a space in your header file you can use to drop in the WordPress Search Box.
In your theme header.php file look for the following html code:
<div class=”edgtf-position-right-inner”> </div>In between the two html tags place the following code:
<?php get_search_form(); ?>Like this:
<div class=”edgtf-position-right-inner”><?php get_search_form(); ?> </div>
You may need to style it to match the theme colours etc.
Have fun
GrahamForum: Plugins
In reply to: [Vebra Properties] access token issuesNo need, its sorted now.
The server was having an issue with the cron job.
I found it easier to let Pingdom hit /wp-cron.php on a daily basis.
Seems to work fine now.Thanks, the code amendments worked fine for me.
Forum: Fixing WordPress
In reply to: Not Updating,..Stuck on Enabling Maintenance modeAlso check the ‘Update” folder in the wp-content directory.
WordPress will dump a load of files in there during an upgrade. If the process is interrupted you will end up with files that may be interfering with your site.
By default this folder is empty, its just a temporary space WordPress uses during an update cycle.
Forum: Fixing WordPress
In reply to: Widgetised area not saving the widgetSolved – it helps to read the forums before posting!
Turns out that WordPress doesnt like capital letters when giving something an id.
I changed the line:
'id' => 'HomeDisplayRecent',
to
'id' => 'homedisplayrecent',
and hey presto it works!Forum: Fixing WordPress
In reply to: 404 errrors with catagories and tagsThanks for replying Rev.
The blog page works fine and looks like this:
http://www.hatfoundation.org.uk/news-eventsThe individual post looks like this but returns the 404 error:
http://www.hatfoundation.org.uk/289/events/2010-gala-dinner-charity-auctionForum: Fixing WordPress
In reply to: 404 errrors with catagories and tagsI have the same issue with one particular site.
The site uses WP as a cms and all the pages are showing up correctly with permalinks however, individual blog posts, which display correctly in the blog index page, do not show up when the title is clicked on and resolve to the 404 error page.
Any ideas where I am going wrong.
my permalinks are set to:
/%post_id%/%category%/%pagename%Cheers, any help appreciated