dralezero
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Help with pagination class php (wpsc)Does your products_page.php theme file for WPSC have the pagination code in it?
The one from the default theme starts with
<?php if(wpsc_has_pages() && ((get_option('wpsc_page_number_position') == 1 ) || (get_option('wpsc_page_number_position') == 3))) : ?>
Forum: Fixing WordPress
In reply to: edit screenGo to User > Your Profile
Make sure “Disable the visual editor when writing” is not checked.Forum: Fixing WordPress
In reply to: Posts Work No Matter URLPut this in your functions.php of your theme.
remove_filter(‘template_redirect’, ‘redirect_canonical’);Forum: Fixing WordPress
In reply to: Posts Work No Matter URLDoes the url auto switch to the correct url or does it stay gibberish in the address bar of browser?
Forum: Fixing WordPress
In reply to: Search forumClick View your profile on the top right or Member under you name.
Or google https://www.google.com/#hl=en&q=site%3Awww.remarpro.com+%2Bsimpatico
Forum: Fixing WordPress
In reply to: No traffic to new blog with same content??https://en.support.wordpress.com/domain-mapping/redirecting-your-blog/
If you need further help with your wordpress.com account you should check out the forums there
https://en.forums.wordpress.com/Forum: Fixing WordPress
In reply to: Posts Work No Matter URLWordPress will automatically find the match. It does it to me too.
Forum: Fixing WordPress
In reply to: [Plugin: Contact Form 7] Changing background color of cellsYou can give each field a class or id
[text* your-name class:yellow id:idname]Forum: Fixing WordPress
In reply to: Is this code correct?To test your arrays you can use
print_r($array);
you can’t just echo the array variable unless specifying an indexecho $array[0];
or looping through as MichaelH shows.Forum: Fixing WordPress
In reply to: IE bug for a PHP scriptYour div tag is broken. It is missing the closing
>
<div role="banner"
A note, PHP is processed on the server so browser doesn’t matter.
Forum: Fixing WordPress
In reply to: linking to other sitesFill in the Title box what you want to say when mouse hovers a link. The scripted window message is your security settings in the browser.
“If you trust the website and want to allow the scripted window, click the Information Bar, and then click Temporarily Allow Scripted Windows. To always allow scripted windows, check the Allow websites to prompt for information using scripted windows custom security setting.” – Microsoft
Forum: Fixing WordPress
In reply to: Putting a pixel next to the word “admin” in my blogWhat are you doing to make it show there in the first place?
Forum: Plugins
In reply to: Create two widgets in plugin with WP_WidgetI figured it out. You can simply duplicate the whole process in the same plugin file. I just overlooked not having this part unique between the two.
$this->WP_Widget('yawQuestions',...
Forum: Plugins
In reply to: Adding another wordpress rss feed to existingI hope this is what you mean. Adding more RSS feeds from other sites?
Manually you can open your header.php in your template.
<link href="https://..url_to_a_feed.." rel="alternate" type="application/rss+xml" title="Name Of Feed" />
Add as many as you want and they will show selectable from the drop down when you click the RSS icon in address bar of browser.