blacklinemedia
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Re-upload WP blog in another domainCan you still access wp-admin? If you can I would recommend using a cloning plugin such as the ones below:
http://wordpress.org/plugins/wp-clone-by-wp-academy/
https://wordpress.org/plugins/duplicator/
Cheers,
Alex BlackForum: Fixing WordPress
In reply to: Site Suddenly Showing "My Title" in Browser TabCan you post a link to your site?
Forum: Fixing WordPress
In reply to: Pages not loading correctly – visual view not rightCan you post a link to your site?
This issue could be related to a plugin, try disabling each plugin and seeing if it makes a difference.
Forum: Fixing WordPress
In reply to: Content edit area not loading/workingCould be a plugin conflict, try disabling each plugin and testing to see if you can attribute the error to one plugin in particular.
Forum: Fixing WordPress
In reply to: Can I make my slider proportionally?User media queries in css 3 to make the slider different sizes based on the window width.
http://css-tricks.com/snippets/css/media-queries-for-standard-devices/
Alternatively you can make the slider half width like this:
div.flexslider.posts-slider { width: 50%; }Forum: Fixing WordPress
In reply to: Help me decide how to organise my content@darossa Take a look at these two plugins, for creating custom post types, taxonomies and views for displaying them.
http://wp-types.com/home/types-manage-post-types-taxonomy-and-custom-fields/
http://wp-types.com/home/views-create-elegant-displays-for-your-content/
Here is a link the to Codex page about custom post types: http://codex.wordpress.org/Post_Types
Forum: Fixing WordPress
In reply to: Developing eCommerce website to sell Virtual CoinThis plugin might be helpful http://docs.woothemes.com/document/measurement-price-calculator/
Forum: Fixing WordPress
In reply to: Problems uploading media fileContact your website hosting provider and ask them if they can fix it.
Forum: Fixing WordPress
In reply to: Title of my posting is not showing in fullAt the moment it looks like your theme might be doing something like this
<?php echo substr(the_title(”, ”, FALSE), 0, 32) . ‘…’; ?>
However if you want to to simply display the title with a link to the post then you need to replace that code with this code
<?php the_title(); ?>
The issue you will have is finding all instances in your theme where this method has been used to truncate the title.
Cheers,
AlexForum: Fixing WordPress
In reply to: [WordPress] I can't access my siteTake a look at this article http://blogtimenow.com/wordpress/deactivate-wordpress-plugins-manually-database/
Forum: Fixing WordPress
In reply to: Help me decide how to organise my contentHi
Sounds pretty simple really. I would organize your years, semesters, classes and subjects as categories. You could do some modifications and create a custom taxonomy (http://codex.wordpress.org/Taxonomies) so that you can break up your data a bit more. But if you want to keep things simple I would just leave them as categories and use wordpress’s hierarchical structure of categories to your advantage (e.g. Year 1 has a child category of semester 1 which has a child category of family law).
I would not use tags to organize your data. Think of tags more like keywords. So for instance say there is a famous case that is referenced in lots of different lectures or a theme that is referenced in lots of different lectures (e.g. mens rea). Then you can add it as a tag, and then when you view the tag archive you will be able to see a list of all posts with that tag.
Cheers,
AlexForum: Fixing WordPress
In reply to: Editing The Bottom of a WP pageHey, the 4 sections at the bottom of your theme in the footer are what we call widgetized areas. These are sections of your site where you can add widgets such as a search box, list of recent posts, a custom menu, text block etc. You can edit these sections by going to Appearances > Widgets and then dragging and dropping new widgets into these 4 sections.
You will also be able to add widgets to your themes sidebars too.
Cheers,
AlexForum: Fixing WordPress
In reply to: [WordPress] I can't access my siteHey, this should be pretty easy to fix just access your files via ftp and change the directory name of those plugins (e.g. /wp-content/plugins/plugin1/ to /wp-content/plugins/plugin1-disabled/). This will stop the plugin from working and as a result WordPress will disable it. To re-enable the plugins you will have to change the directory names back to what they were originally.
Cheers,
AlexForum: Fixing WordPress
In reply to: Copying wordpress blog to another siteI would recommend using a cloning plugin such as WP Clone by WPAccadamy or The Duplicator
http://wordpress.org/plugins/wp-clone-by-wp-academy/
http://wordpress.org/plugins/duplicator/
These plugins will allow you to transfer your site to a new host or new domain.
Forum: Fixing WordPress
In reply to: error message when try to edit a pageSounds interesting…
Try disabling all your plugins one by one and see if this helps.