Peter
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can't Find Locate the Subheading text of a News Widget on Main PageIf it’s the box on hte right titled “News” then you’d have to change the post names.
Your question is quite vague you’d need to elaborate if that doesn’t help.
Forum: Fixing WordPress
In reply to: Q: Automated Membership Access – need a solutionBuilt into wordpress you can make pages and posts private with a password and then you can simply e.mail everyone giving them the password.
Forum: Fixing WordPress
In reply to: Adding sub menu to a pageYou could setup categories for each and then list the categories.
That could be done in the sidebar.Otherwise you’ll probably want to add custom fields and the add their input to the loop.
Cehck out the codex to help you with that.
Forum: Fixing WordPress
In reply to: Blank home pagedo you also have an index.html in their? If you do delete that.
Try deleting your .htaccess file if you have one.
Check the server error logs
Forum: Installing WordPress
In reply to: Unable to locate wp-admin pagehttp://smeagol.co.uk/wp-admin/
Returns a 500 error try removing you .htaccess if you have one set up.
Also http://smeagol.co.uk/ you probbably have an index.html or index.htm here delete that also.
Forum: Fixing WordPress
In reply to: the_post_thumbnail (); in shortcode printed out the loopchange
$thumbgram = the_post_thumbnail('thumbnail');To:
$thumbgram = get_the_post_thumbnail( $post->ID, '', 'src' );You will have to play with the attributes to return just the URL I’m doing this from memory if you check the codex it will give you the right attributes if this isn’t quite right
Forum: Fixing WordPress
In reply to: Automatic move from html to wordpressThe plugin Dave has referenced will do the job but you will need to specify upload everything between the <body> tags.
And add the head stuff css etc to the theme.Their is no system to convert the site however, you’ll need to build a theme! Then do the import, and you will loose out with most of the benfits of using wordpress this way.
Forum: Fixing WordPress
In reply to: Lots of HTML in Page Editor (How do I hide it)You will need to take alot of teh html out of the post editor and put it directly into the template.
Then just use the post editor to update certain aspects of the text on the page and you will have to add custom fields for any additional text areas.
As for images again you can do this with custom fields or if it is just one image you can use the wordpress featured image.
Forum: Fixing WordPress
In reply to: Blank home pagetry deactivating your theme go back to twenty 12 or whatever and then re activate it!
Forum: Fixing WordPress
In reply to: Problems with domains and templateWell bearing in mind that I only have your front end to look at!!
I would say it could have something to do with:
@font-face { font-family: 'LeagueGothicRegular'; src: url('fonts/League_Gothic-webfont.eot'); src: url('fonts/League_Gothic-webfont.eot?#iefix') format('embedded-opentype'), url('fonts/League_Gothic-webfont.woff') format('woff'), url('fonts/League_Gothic-webfont.ttf') format('truetype'), url('fonts/League_Gothic-webfont.svg#LeagueGothicRegular') format('svg'); font-weight: normal; font-style: normal; }You probably need to change all the requests for physical files in the css to :
src: url(‘http://www.snailbagshop.com/FULL PATH TO THE FILE/fonts/League_Gothic-webfont.eot’);That is insert http://www.snailbagshop.com/ and the full pathe to the file not the whole think i put in above.
Make a backup before you try that of the css file!Forum: Fixing WordPress
In reply to: Not getting output on template after Ajax requestTry changing your jQuery to this (obviously untested as can’t access dynamic content):
jQuery('.but').click(function(){ if(jQuery(this).hasClass('one')) { var data = { action: 'view_portfolio', galleryID: 1 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } else if(jQuery(this).hasClass('two')) { var data = { action: 'view_portfolio', galleryID: 2 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } else if(jQuery(this).hasClass('tre')) { var data = { action: 'view_portfolio', galleryID: 3 }; jQuery.post(ajaxurl, data, function(response) { $('#fotos').html(response); //alert('Got this from the server: ' + response); }); } else { var data = { action: 'view_portfolio', galleryID: 4 }; jQuery.post(ajaxurl, data, function(response) { //alert('Got this from the server: ' + response); }); } return false; });Forum: Fixing WordPress
In reply to: Change format of search result page – DeFolio themeBest to read it here, plus this doesn’t pay very well :-p
http://codex.wordpress.org/The_LoopForum: Fixing WordPress
In reply to: Posts on subpages not linkingYeah if you look at your CSS for page_templates.css line 87
.et_portfolio_more_icon, .et_portfolio_zoom_icon { display: block; height: 37px; position: absolute; top: 68px; width: 37px; text-indent: -9999px; display: none; }you need to change display:none !
Because it’s saying not to show them…
Forum: Fixing WordPress
In reply to: Change format of search result page – DeFolio themeYou can modify seach.php and put the loop from the standard page into teh loop for search.php
Forum: Fixing WordPress
In reply to: Problems with domains and templateIt looks like http://www.snailbag.es/ isn’t allowing the css to render properly.