DanielMalone
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: connection partially encryptedIs this issue solved? the /cart/ seems to be loading well over https.
For your home page to be https you need to edit /themes/eshop/css/flexslider.css to add https://www. to a couple of images.
Forum: Fixing WordPress
In reply to: connection partially encryptedThe SSL is working. However, it looks like some of the images and fonts on the page are using http because they are hard-coded. They start like http://www.victory… etc. in the HTML and CSS.
To view a list of images and fonts that start with http:// in Chrome you can go to Tools > Developer Tools. Click on the “Console” tab.
Basically, you may need to edit the CSS. That is where some of the http:// URLs are coming from.
Check /themes/eshop/custom.css and /themes/eshop/style.css. You can search the file for “http”. Change them to begin with https://www. etc.
Hopefully this will get you on the right track. If you need more help, just let me know!
Forum: Fixing WordPress
In reply to: perma linksThe contact form is a page and not a post?
Open the contact form page in the WordPress admin. Directly below the page title is a “Permalink” section. Edit the URL there.
Forum: Fixing WordPress
In reply to: WordPress as a front page ?So the only reason you’re using WordPress is to redirect the user to the http://mywebsite/forum which runs phpBB?
That sounds like it’s not a WordPress issue. A simple PHP file at http://mywebsite/ redirecting to http://mywebsite/forum would work.
<?php Header( 'HTTP/1.1 301 Moved Permanently' ); header( 'Location: http://mywebsite/forum' ); exit; ?>Forum: Fixing WordPress
In reply to: How do you increase the text size of the post editor?It looks like the answer is yes, but it’s a little complicated.
It involves adding a custom CSS stylesheet for just the WordPress editor. This requires a few lines in the functions.php file and a custom CSS file (in which you would specify a larger font size).
http://codex.wordpress.org/Function_Reference/add_editor_style
Forum: Fixing WordPress
In reply to: Scraping post_content to remove html elements from malwareOne possible solution:
Export all database tables from phpMyAdmin.
Open database file in a text editor such as Notepad.
Do a Find and Replace
Save and upload the database file back to the web server.
Forum: Fixing WordPress
In reply to: How to do "Hyperlink" Generation in wordpress ?Correct.
Just about any HTML tag can have an id. You just need to add the
id="this-is-the-id"to the HTML tag.Forum: Fixing WordPress
In reply to: Help me find the error here?At this point in the code, is the
whileloop started? Can you paste in more of the code before this point?Forum: Fixing WordPress
In reply to: How to do "Hyperlink" Generation in wordpress ?If you want to have the page scroll down to a certain location on the page, both the HTML
<a>tag and the tag you want to scroll to (<h1>) should both reference an ID.You can add an ID to a <h1> tag by adding this to the <h1> tag:
<h1 id="this-is-the-id">Title</h1>Forum: Fixing WordPress
In reply to: How to do "Hyperlink" Generation in wordpress ?If I understand the question, here is the HTML:
<a href="#this-is-the-id">Scroll to a certain place</a>Then this for the place you want to scroll to:
<div id="this-is-the-id">text</div>Forum: Fixing WordPress
In reply to: Using WP Plugins shotcodes in custom html pagesNo.
It must be a WordPress page. Posts, pages, etc. will work.
If you design a custom .html page that is not with WordPress, WordPress has no way of processing the page. The HTML page will go directly to the browser without every being processed by WordPress.
Forum: Fixing WordPress
In reply to: Contact us link doesnt appearIt looks like the “Contact Us” link is in the HTML. The problem is that there are too many links in that section, so it hides the ones that won’t fit in that top black bar.
Go into Appearance > Menu and remove some of the navigation menu items from that menu. Currently, there are 13 (most are hidden).
Forum: Fixing WordPress
In reply to: Changed Site URL – Can't Return to Edit SiteThe functions.php should be in /wp-content/themes/NAME-OF-ACTIVE-THEME/functions.php
It may or may not exist.
Forum: Fixing WordPress
In reply to: Changed Site URL – Can't Return to Edit SiteWhat exactly did you change? A database entry? Without knowing exactly what was changed, this may / may not be helpful:
In PHPMyAdmin, you can edit the _options table directly. In particular, these rows:
“home”
“siteurl”Additional info: http://codex.wordpress.org/Moving_WordPress
Forum: Fixing WordPress
In reply to: moving WordPress out of root into WordPress folderIt sounds like a moving WordPress issue. See “Moving Directories On Your Existing Server” on this post: