Robin
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How to change post-title background colour on Weaver II Themeah ok but its back to maintenance mode
Forum: Themes and Templates
In reply to: How to change post-title background colour on Weaver II Themelooks like u already have sorted out the problem
🙂Forum: Fixing WordPress
In reply to: how to relink wordpress libraryafter your header closing php tag
and before your get_Footer php tagForum: Fixing WordPress
In reply to: how to relink wordpress libraryYou would have to make a custom theme page
<?php
/*
Template Name: Your Template name
*/
?>
<?php get_header(); ?>and than after this section you can write your html
<ha href=”home”><img src=””><?php get_footer(); ?>
Go to Dashboard add new page and on right side you would be able to see all the theme pages from dropdown select your page
go to settings > reading > and select this page as your first pageForum: Themes and Templates
In reply to: [Sliding Door] [Theme: Sliding Door] Removing the menu barDashboard > Appearance > Menus
you should be able to see your black menu
remove it from primary navigationif you dont see a primary navigation can you printscreen your menu section (Dashboard > Appearance > Menus)
Forum: Themes and Templates
In reply to: How to change post-title background colour on Weaver II Themecan you post the link to your website please
Forum: Fixing WordPress
In reply to: how to relink wordpress libraryWordPress DB uses serialization string which breaks when transfer wordPress installations.
I am sure you would have done everything perfect just not the proper db replace still
use this script to search and replace
http://interconnectit.com/124/search-and-replace-for-wordpress-databases/Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themegreat 🙂
Forum: Hacks
In reply to: Add class to all links created by tinyMCEu would have to add jquery 1.7.2 or latest if it is not already there
Forum: Hacks
In reply to: Add class to all links created by tinyMCEwhat i can think of is instead of fiddling with tinyMCE code
you can create a simple jquery
so what i can understand is you want a special class to be added to all p tags
so say the container div id = text
and than it has all the p outputed from tinyMCEjQuery(document).ready(function($) {
{
$(‘#text>p’).addClass(‘myClass’);
}not tested but what this is doing is on page load
it finds the div text and looks for the p in it and adds classyou might have to play a bit with it but this is the best way to add classes
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themethe other solution
<p class="hide"><?php truncate_post(1000); ?></p> go to css .hide { display:none; }see which ever works best for you
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this theme<p><?php truncate_post(1000); ?></p>
truncate_post(0);this tells php to display the number of character
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themehttp://www.macrosaludpanama.com/wp-content/themes/Trim/style.css
this is the fileForum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themewhere did u exactly added it as i dont see it in code
Forum: Themes and Templates
In reply to: How to remove entry_content excerpt on this themejust add it anywhere in your css
on top would be better as such