marcnyc
Forum Replies Created
-
I just wanted to report back that I found the solution/workaround.
All I had to do is add this code in an external included .JS file:
var RecaptchaOptions = { theme : 'clean' };
And if you one doesn’t have an external JS file just paste this between the <head> tags of your pages:
<script type=”text/javascript”>
var RecaptchaOptions = { theme : ‘clean’ };
</script>Forum: Plugins
In reply to: [Plugin: Contact Form 7] reCAPTCHA module – White theme?I had the same problem and found the solution. All you have to do is add this code in your external .JS file:
var RecaptchaOptions = { theme : 'clean' };
you can use white instead of clean
And if you don’t have an external JS file just paste this between the <head> tags of your pages:
<script type="text/javascript"> var RecaptchaOptions = { theme : 'clean' }; </script>
Forum: Fixing WordPress
In reply to: Having trouble after having switched themeI just found the answer to my question here:
https://codex.www.ads-software.com/Giving_WordPress_Its_Own_DirectoryForum: Fixing WordPress
In reply to: Having trouble after having switched themethere is definitely no other way? I had a a custom theme once that worked this way but had smarty and was too heavily modified to be able to just switch themes
Forum: Fixing WordPress
In reply to: Having trouble after having switched themeIn other words I would like to find a way for the PAGES (as opposed to POSTS) created in WP to appear as if they were in the root of the server even though WP is not installed in the root. Currently my Biography WP page with permalinks is at https://www.mydomain.com/blog/biography – how can I have that URL be https://www.mydomain.com/biography???
Is there a way to do this?
ThanksForum: Plugins
In reply to: how to add a functional PHP script within WP so that it stays functional?I would love to look at your single custom page template and see how your website integrates your author profiles with the WP installation… could you send me a link? would you be willing to share that template code so I can see? I am not quite clear on what you are describing even though I read the two links you sent.
Thanks for your reply, time and support.Forum: Plugins
In reply to: how to add a functional PHP script within WP so that it stays functional?Thanks for the links. So it is not possible to do it without creating new template pages? I just wanted to create it in a way (if possible) that would allow me to switch templates easily, without having to move around/create custom template files. Is that out of the question?
Forum: Fixing WordPress
In reply to: Having trouble after having switched themeafter trying things I found out that if I set both WordPress address URL and the Blog address URL to the same value (the root of the WP installation) it works but I wanted to have the URL of my website be the root of the server so that permalinks start from the domain and not from the blog installation directory
does that make sense?Forum: Everything else WordPress
In reply to: WordPress on iPhone removes all “<” and breaks HTML codeI apologize if I bump this, but I would really like to figure this out and don’t know where/how to start troubleshooting it
Thanks for the reply Michael…
So it seems like I would have to re-write all my queries if I decided to go this route, right?Forum: Fixing WordPress
In reply to: Search is NOT working – I DID search the forums first – no answers!I understand now. Thank you very help. That explains a lot (although it doesn’t make sense to me that the native WP search wouldn’t search for pages in its database).
Thanks for the replies.Forum: Fixing WordPress
In reply to: Search is NOT working – I DID search the forums first – no answers!I assumed that the search would work for both posts and pages… the page https://www.marcurselli.com/biography was created with WP but nothing is found in that page
Forum: Fixing WordPress
In reply to: Search is NOT working – I DID search the forums first – no answers!here is the link https://www.marcurselli.com/index.php
Forum: Fixing WordPress
In reply to: how do I set a default user level for all newly registered users?I should mention that in the Newly registered members OPTIONS I have it set to May publish articles and yet users are created with level 0 instead of level 2
After trying WPMU I can say that, as of Oct 24th, 2005, the latest unstable release of WPMU (no stable release avaialble as of today) is very sketchy and buggy and un-usable without intervention on the database. I was able to successfully install it and try it but there is a mess with paths in the database, and unless fixed it won’t work…
This said, in a an attempt to give back to this community, I wanted to post my findings about WSWANG’s Multi-Blog Hack for WordPress 1.5.1.3 (no update for 1.5.2 available yet). This hack workes WAY better than WPMU and I found why I was getting that blank page.
Basically it is advisable that your theme be in a folder called default and replaces the default theme because if you name it with your own name (and you don’t have a default theme folder in the themes folder) you’ll get a blank page whenever you attempt to access the generic wordpress root url (because it can’t find a default theme). it will see your theme anytime you access a blog with the author_name variable defined in the url, however.
hope this helps