codismo
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Published image file sizes larger than uploadedUpload the exact dimension, that way it will show the original image you uploaded.
The dimension is 670×1005
Forum: Fixing WordPress
In reply to: How to hide Category title in woocommerseThe URL to the page in question would help understand which element exactly are you trying to hide.
Based on the source code it looks like you deleted footer.php
So, redownload the theme files ( to get the footer.php ) and then using FTP upload the footer.php to wp-content/themes/rosalie
And when doing modifications to a theme use a child theme, do not modify the original files directly.
- This reply was modified 7 years, 6 months ago by codismo.
Forum: Fixing WordPress
In reply to: WP_Query with custom post type in args stopped workingIt’s something related to the #birthday section.
Set WP_DEBUG to true in wp-config.php, it should show the exact error.
If it does not then add this in wp-config.php ( where WP_DEBUG is located ):
// Enable WP_DEBUG mode define( 'WP_DEBUG', true ); // Enable Debug logging to the /wp-content/debug.log file define( 'WP_DEBUG_LOG', true ); // Disable display of errors and warnings define( 'WP_DEBUG_DISPLAY', false ); @ini_set( 'display_errors', 0 ); // Use dev versions of core JS and CSS files (only needed if you are modifying these core files) define( 'SCRIPT_DEBUG', true );
Then load the page and after you do go to the wp-content folder and open up the debug.log file, the error will show up there.
Forum: Developing with WordPress
In reply to: Remove ‘my site’ with dashbord in admin barAnd here’s a PHP approach as well:
function my_prefix_remove_admin_bar_item( $wp_admin_bar ) { $wp_admin_bar->remove_node('site-name'); } add_action( 'admin_bar_menu', 'my_prefix_remove_admin_bar_item', 999 );
Forum: Developing with WordPress
In reply to: Remove ‘my site’ with dashbord in admin barSimplest approach would be to hide with CSS:
#wp-admin-bar-site-name { display: none; }
Forum: Fixing WordPress
In reply to: Space After Embedded Facebook Video on MobileIt’s because of the height attribute on the iframe. The width gets adjusted due to max-width but the height remains.
Give the FitVids plugin a try.
Forum: Developing with WordPress
In reply to: Problem with tags / labelsThe tag accepts the tag slug, not the tag name. So if for example the tag name is “some tag” the slug would be “some-tag”.
$args = array( 'post_type' => 'post', 'tag' => 'some-tag' );
Forum: Developing with WordPress
In reply to: common area within wordpress pageIf it’s inside of the main content then there’s a filter for “the_content” in the theme ( or a plugin ).
You need to find that filter in the code and either remove it directly or remove it using remove_filter.
But I’m not 100% sure I understood you correctly, example URL would help out.
Forum: Developing with WordPress
In reply to: Comment_FormTry this:
$('.input-contact input, .textarea-contact textarea').each(function(){ if ( $(this).val() == '' ) { $(this).next('span').removeClass('active'); } else { $(this).next('span').addClass('active'); } });
Forum: Developing with WordPress
In reply to: issues with customizationI responded on the other topic that was in the “fixing WordPress” category, not sure if you’ve seen it. Here’s the answer again:
Try adding the class “col-md-9” to the footer and also adding float:right; to it.
As for increasing the main area and making the sidebar smaller, change the class on the sidebar to be “col-md-2” and the main to be “col-md-10” ( change it on the footer as well )
Forum: Developing with WordPress
In reply to: Help to order and group posts by month (but not year)Only thing that comes to mind for ordering by month is to store the month number ( 1-12 ) in post meta and then order by meta_value_num.
Forum: Fixing WordPress
In reply to: not sure what to call this reveal to google for a plugin“ajax post grid”, “ajax post list”…
“ajax” and “post” being the most important keywords.
But not sure if you’ll find one that does what you need. You might have to hire someone to build it.
Forum: Fixing WordPress
In reply to: Can’t save or post from wordpress.comThis is a forum for www.remarpro.com ( self hosted WordPress ), for WordPress.COM you can ask for support at https://wordpress.com/help/contact
It’s not just that one PC, same for me.
Links to CSS files and JS files don’t open the files, they show the WordPress 404 page.
Check the folder permissions ( wp-content, wp-content/themes, wp-content/themes/twentyfourteen ). They should be 755 or 750.
- This reply was modified 7 years, 6 months ago by codismo.