Adnan Hyder Pervez
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost images with posts on landing pagetry change permalink to post day save.
then again revert back to current and saveForum: Fixing WordPress
In reply to: I can’t edit my website categoryare you logged in as administrator?
Forum: Fixing WordPress
In reply to: Lost Site and Logintry contact your hosting provider is cpanel redirecting properly?
Forum: Fixing WordPress
In reply to: text alignment inconsistent on mobile screen despite same coding@media only screen and (max-width: 600px) {
span strong {
display: block;}
}
add this property to your css.Forum: Fixing WordPress
In reply to: Child Theme doesn’t work/* Theme Name: main Child Theme Template: main */ style sheet code------------------------------------------------ <?php function main_theme_enqueue_styles() { $parent_style = 'parent-style'; wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' ); wp_enqueue_style( 'child-style', get_stylesheet_directory_uri() . '/style.css', array( $parent_style ), wp_get_theme()->get('Version') ); } add_action( 'wp_enqueue_scripts', 'main_theme_enqueue_styles' ); ?>
- This reply was modified 6 years, 4 months ago by Jose Castaneda. Reason: added backticks for code
Forum: Networking WordPress
In reply to: blog content changes depending on where I access it fromare you using cache plugins?
Forum: Fixing WordPress
In reply to: Getting weird characters on website on first loaduncheck the minified html option
Forum: Fixing WordPress
In reply to: Child Theme doesn’t workonly enter name and parent name does it work?
Forum: Fixing WordPress
In reply to: Menu layouttwentythirteen supports moslty call a sidebar with custom menu,
Forum: Fixing WordPress
In reply to: excluding some submenu items when in mobile menu@media only screen and (max-width: 600px) { .menu idofli { dispaly:none; } .menu id1 { dispaly:none; } .menu id2 { dispaly:none; } }
———
idofli is replaced with the id of li view source and enter the ids.place in css file
- This reply was modified 6 years, 4 months ago by Adnan Hyder Pervez.
- This reply was modified 6 years, 4 months ago by Steven Stern (sterndata).
Forum: Fixing WordPress
In reply to: Content missingmake regular backups secondly your source is missing that’s why every thing is displaced.
Forum: Localhost Installs
In reply to: Install in localhost without downloading imagesimg src replacing plugin is available .. or simply write a function in fucntion.php to redirect the images link.
Forum: Fixing WordPress
In reply to: excluding some submenu items when in mobile menuthere is a plugin for this specific menu for specific screens.
Forum: Networking WordPress
In reply to: Multisite redirect www to non wwwwp_options table is set to proper www redirect?
Forum: Fixing WordPress
In reply to: New WP installation after changing the hosterUpload your wp-content and related files to host with same database then it would be resolved