Demoris
Forum Replies Created
-
Forum: Plugins
In reply to: [Gravity PDF] Headers already sent and php warning‘The plugin generated 2 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.’
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Text colourTry the plugin options page, down near the bottom.
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Text colourIf you don’t already, I recommend using Chrome or Firefox with the Firebug addon. Both of these browsers would then allow you to right click the area you ant, and ‘inspect element’. This shows the HTML and CSS for the element you clicked on, and you can live edit the CSS to see modifications and what CSS you need to change.
To change the font size, add a css rule for #wpcr_table_2 and set font-size to your value of choice.
To edit the spacing of ‘required field’ and the checkbox, trying adding a margin to .wpcr_fl { 5px !important; }
Forum: Plugins
In reply to: Is there a way to make images bigger in the complete post page.Any you using a particular theme or plugin?
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Text colourYou have a couple areas in the CSS that are both styling the input:
style.css line 633:
#content, #content input, #content textarea { color: white; font-size: 16px; line-height: 24px; }
and style.css line 262:
body, input, textarea { color: #666; font-size: 12px; line-height: 18px; }
The first one has priority in this case (line 633).
To have your input areas show up with non-white text, try adding this:
#content #wpcr_respond_1 input, #content #wpcr_respond_1 textarea { color: #666; }
Yes, sorry, that’s correct. OP had already removed the div from the form, so I didn’t add that to my post.
Thanks for clearing that up mistamatrix.
Forum: Networking WordPress
In reply to: Stuck right at the startYes, following the original plugin instructions should work now.
Forum: Networking WordPress
In reply to: Stuck right at the startYou need to set a Wildcard DNS entry. You can set this through your domain registrar. If you search their help documents, they should have this info available for you.
A first step could be to take a look at ‘Gallery’ > ‘Options” > ‘Effects’, and see what the ‘JavaScript Thumbnail effect’ is set to. It might be set to ‘none’.
Forum: Networking WordPress
In reply to: Stuck right at the startForum: Networking WordPress
In reply to: Stuck right at the startHave you gone through the Multisite process before attempting to install this plugin?
Forum: Networking WordPress
In reply to: Stuck right at the startThis plugin requires a couple additional steps to a normal WordPress plugin, and it’s documented fairly well in the installation instructions that you linked to.
1. Add ‘define( ‘SUNRISE’, ‘on’ );’ to wp-config.php
2. Make sure to place sunrise.php in wp-content
have you done both of these steps?
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Text colourI would go with editing your theme’s CSS file over the plugin CSS. This way you don’t lose the CSS when the plugin is updated.
What is your website URL? Maybe I could take a quick look a paste some CSS here for you.
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Remove Date from reviewsYou have 2 options:
1 is the more difficult option of editing the plugin code to remove the date output.
2 is to edit your theme’s CSS and just hide the date:
.dtreviewed {display: none !important; }
Forum: Plugins
In reply to: [WP Customer Reviews] [Plugin: WP Customer Reviews] Php Code to insertI believe that WP Customer Reviews comes with 2 shortcodes:
WPCR_INSERT and WPCR_SHOW
You can insert these directly into a PHP template by using the WordPress function do_shortcode():
<?php echo do_shortcode('[WPCR_INSERT]'); ?>
Hope this helps with what you’re looking for.