Jay
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to disable view source on website?You can use a javascript right click override, but as for the intelligent ones viewing your HTML, you won’t block us. You can try an obfuscation of sorts, but those can be undone also.
Forum: Fixing WordPress
In reply to: MySQL server has gone awayI can’t say anything of the host as I’ve never used them. Right now I use JustHost, but of course GoDaddy and 1&1 are also good hosts. JustHost is slow compared to the other two of course.
Forum: Hacks
In reply to: Custom Index Query – Sorting issueOkay, so you want to query all categories, (1, 4, & 6) but you want only one post from cats 4 & 6, and you still want them to be in chronological order.
EDIT: I don’t know if that’s possible haha
Forum: Fixing WordPress
In reply to: wordpress as CMSConsider looking into a premade theme, probably a “Magazine” format or even a “News” format. Plenty of pre-made templates exist with these features, you only need to know where to look. My first guess is “Themeforest.net”
But to your question, yes wordpress can be a CMS, as it already is, but it packs more power than you think.
Forum: Hacks
In reply to: Custom Index Query – Sorting issueOkay so query one and two (cat 6 & 4 respectively) are fine, but query 3, should just exclude cats 6 & 4.
Your third query instead of reading ‘cat=1’ can read ‘cat=-6,-4’ therefore excluding said category ids.
Forum: Fixing WordPress
In reply to: Parse error unexpected T_STRINGEither encapsulate the variable’s value with double quotes, or escape the single quote…
$config['website_title'] = 'Death's Door Prods';$config['website_title'] = 'Death\'s Door Prods'; $config['website_title'] = "Death's Door Prods";Forum: Hacks
In reply to: Custom Index Query – Sorting issueUse the Order Parameters of the WP_Query class. Should help you out there.
Forum: Fixing WordPress
In reply to: Broken CSS widget in wordpress 3.3Well to be honest I was gonna say “nah, i’ll just download it and see for myself” but I can’t find it for the life of me. Email me at jjwood2004 -at- gmail
Forum: Fixing WordPress
In reply to: Transfer wordpress.org to wordpress.comBy transferring your current site to wordpress you will be giving up a good bit of freedom. It is a good idea don’t get me wrong, but then again I don’t know what you mean by interlinking. We here at the wordpress community would gladly help you understand your self-hosted wordpress installation if you’d like.
So what exactly happened, maybe I can help you understand?
Forum: Fixing WordPress
In reply to: Broken CSS widget in wordpress 3.3Well if that’s all you see as far as links in the header, then it’s a plugin issue. There is a plugin that is including the admin css file during the wp_head() function.
Alternatively you can override the CSS if you don’t want to find the bothering plugin. But I would suggest finding the plugin of course.
FYI, the CSS is from the admin.css file, line 1
Forum: Fixing WordPress
In reply to: Footer on webpageWordPress pulls it’s footer data from “footer.php” located in your theme’s directory. wp-content/themes/themNameHere/footer.php
Unfortunately you’ll need a little HTML knowledge or maybe CSS depending on the request of course. But once you figure out where you want it you’ll need to use HTML and/or CSS to put it in it’s proper position within the footer.php
Keep in mind though, images are relative to the site’s root.
Forum: Fixing WordPress
In reply to: MySQL server has gone awayHave you double checked your config file against your actual database credentials? Otherwise, i have never heard of such a thing…
Forum: Fixing WordPress
In reply to: TwentyEleven CustomizingI see what you mean, I guess chrome seems to be reading CSS in a different manner. Style.css Line 344 has a rule of
ol,ul{ margin: 0 0 1.625em 2.5em; }Though if I’m not mistaken you can override that rule, just rewrite #access ul like so:
#access ul{ font-size: 13px; list-style: none; width: 525px; /* Make this what you want, but less than 840px */ margin 0 auto !important; }Forum: Fixing WordPress
In reply to: Broken CSS widget in wordpress 3.3Your header.php is including the admin css file:
<link rel="stylesheet" id="wp-admin-css" href="http://bang007.co.uk/xmembers/wp-admin/css/wp-admin.css?ver=3.4-alpha-19620" type="text/css" media="all">Removing that “node” as chrome refers to it, fixes the problem 🙂
Forum: Fixing WordPress
In reply to: TwentyEleven CustomizingI was suggesting adding an extra line of CSS, but if you don’t want to you can just change the #access ul{} parameters.