aprylemagistro
Forum Replies Created
-
Forum: Plugins
In reply to: [FT Calendar] [Plugin: FT Calendar] Clicking a Date BrokenWonderful – thank you so much for your prompt reply!
Forum: Themes and Templates
In reply to: Submenu stylingHave you tried removing the special cases to see if it works if you make it act exactly as Solutions?
Forum: Fixing WordPress
In reply to: WordPress Database to Other ServerAs far as I know it depends on domain2.com’s host settings. Not every web hosting service allows remote mysql database access. If they are both hosted on the same hosting account, you should have no prob.
Forum: Fixing WordPress
In reply to: Remove email address formThe comments.php file is not in your core.
I just downloaded that theme and there is a file called comments.php in the Steira theme. Go to your Appearances tab and you should see in the Editor a file called Comments.
Replace the line
<?php comment_form(); ?>
with the above stuff and see if that works.
Forum: Fixing WordPress
In reply to: Remove email address formYou could altering the comment_form() (usually the last line of comments.php in your theme folder.
Based on https://codex.www.ads-software.com/Function_Reference/comment_form, I might try something like…
<?php $commenter = wp_get_current_commenter(); $fields = array( 'author' => '<p class="comment-form-author">' . '<label for="author">' . __( 'Name' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" value="' . esc_attr( $commenter['comment_author'] ) . '" size="30"' . $aria_req . ' /></p>', /*'email' => '<p class="comment-form-email"><label for="email">' . __( 'Email' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="email" name="email" type="text" value="' . esc_attr( $commenter['comment_author_email'] ) . '" size="30"' . $aria_req . ' /></p>',*/ /*COMMENTED OUT EMAIL */ 'url' => '<p class="comment-form-url"><label for="url">' . __( 'Website' ) . '</label>' . '<input id="url" name="url" type="text" value="' . esc_attr( $commenter['comment_author_url'] ) . '" size="30" /></p>', ); comment_form($fields); ?>
Forum: Fixing WordPress
In reply to: [TDO Tag Fixes] [Plugin: TDO Tag Fixes] help with usageYeah, it sounds like you need to find the tag-slug and replace it with the sample text. Do you know how to find the tag slug? (go to Posts –> Post Tags and you should see slug listed for the category you’re trying to use.
Forum: Fixing WordPress
In reply to: Remove email address formCan you give the page URL?
Forum: Fixing WordPress
In reply to: Can't install plugin or upgrade- no errorAre you trying through your admin panel or manually? Try downloading it manually to see if it’s a problem with the file.
Forum: Fixing WordPress
In reply to: Page Background Brightens on-hoverNo. I don’t see any noticeable shift if I set to white. No change with black. I tried hot pink and light green #abae7a and cannot discern any changes.
But if I use red, or the color I actually initially wanted ##2a3e1e (a forest green color), I see it. The red seems to most obviously show the problem, though.
Forum: Fixing WordPress
In reply to: Page Background Brightens on-hoverI’m seeing the response an LCD flat screen monitor PC. Windows Vista.
Forum: Fixing WordPress
In reply to: Page Background Brightens on-hoverIt is super strange. I took a screenshot of the false “hover state” and pulled it into photoshop. I sampled the color of the hovered state and the color is nowhere to be found within my stylesheet.
My husband confirmed that he can see it changing color too. I also rebooted numerous times within the last 2 days and still see it.
Thanks for testing it. Anyone else?
Forum: Fixing WordPress
In reply to: making a new page without it adding to theme's default header menuSo, you want to have a page on your site that does not show up in the main navigation menu? If so, I recommend the Exclude Pages plugin, which allows you to un-check a box if you don’t want the page to appear in your navigation list. Then you can link to the non-listed page from within the body of another page. Is this what you are looking for?
If not, can you redescribe your problem?
Forum: Fixing WordPress
In reply to: Create New E-Mail AddressesProbably not. Usually adding/editing/removing email addresses is done very easily within your hosting control panel.
Based on the whois info on your domain, it looks like you’re hosted with https://www.hosting4less.com. If you don’t have your login information (for instance if web dude is holding it hostage), that’s where you should start with trying to reclaim things. If you already have your login for your hosting, great! Call the hosting company to find out how to access your control panel and set up a new email address.
It’s usually very easy. You can do it.
Forum: Fixing WordPress
In reply to: All Links to Single Post Are Semi-BrokenNo, I just posted it about 34 minutes ago. Please respond if you find an answer to yours, or post more information. Thanks.
Forum: Plugins
In reply to: Custom Query for Multiple Tags and Custom FieldMichaelH, Thanks. I’ll try this. I tried using >= in the query_posts previuosly and it didn’t seem to like that, but I’ll give it another whirl.
Duane, it took me hours to get it. I pulled the mult. tags using something like:
`$url = “https://estesparkrentals.allyourssolutions.com/?tag=”;
$finalurl = $urlsearchterms . “&tag=” . $urltags;`and tacking on the string that was searched for and putting + signs btw each.
The custom field search is a complex database query that 1st looks at the wp_postmeta table, then the wp_posts table. Maybe there was an easier way but that’s how I did it.