Aims Infosoft
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: assistance with widget placementHello productiondrp,
First if you want replace the map with video then use widget. currently dokan widget used for that map.For that you have some technical knowledge of wordpress.
And the second option for the plugin woocommerce video in product tab,that not working in your case because developer already customized it.if you want to display there then again you have technical knowledge of wordpress.
Thanks
- This reply was modified 5 years ago by Aims Infosoft.
Forum: Fixing WordPress
In reply to: Blog post text not aligned under titleHello,
Put this CSS code into your stylesheet,
.single-post .post-area.col.standard-minimal.span_12.col_last{float: left !important;}
Thanks!
Forum: Fixing WordPress
In reply to: images open links only for web but not for mobileHello,
=> You have to try below options,
Option-1:
=> Removeclients-logos-mobile
section(https://prntscr.com/r7x0f5) and remove this CSS code (https://prntscr.com/r7x113) and design “Client” section for mobile responsive.Option-2:
=> You can copy desktop layout section and paste this section below and replace 6 column layout(https://prntscr.com/r7x4wm) into 3 column layout(https://prntscr.com/r7x5rx).Thanks!
Forum: Fixing WordPress
In reply to: preformatted block backgroundHello,
Put this CSS code into your stylesheet,
.single-post pre.wp-block-preformatted{background: none;}
Thanks!
Forum: Fixing WordPress
In reply to: Phantom Header ImageHello,
Put this CSS code into your stylesheet,
.page-id-80 div.container-fluid .alignc.wd100{display: none;}
Thanks!
Forum: Fixing WordPress
In reply to: How can I remove white space in the headerHello,
Follow this step to remove white space along with a “d” character.
=>Open your FTP server > Connect your site FTP > Open your "header.php"
file which is located at (/wp-content/themes/divi-child/header.php OR /wp-content/themes/Divi/header.php
).=> You can see the “d” character in the file after the close head tag(
</head>
). Remove “d” character from there and save your file.Thanks!
Forum: Fixing WordPress
In reply to: How can I hide thatHello,
Put this CSS code for hiding your page title name.
.container.main_title h2{display: none;}
Thanks!
Forum: Fixing WordPress
In reply to: images open links only for web but not for mobileHello,
=> You already made two different sections/rows for the client logo. See into the screenshot, [https://prntscr.com/r7cdlw]. You didn’t set the logo URL for the mobile view. You can set this via log into your admin and edit the page.
=> See here what is the issue in between desktop and mobile view.
Desktop Client Logo Layout: [https://prntscr.com/r7ckm3]
Mobile Client Logo Layout: [https://prntscr.com/r7cl9y]Thanks!
Forum: Fixing WordPress
In reply to: CRITICAL Allowed memory sizeHello,
I think it’s a PHP memory limit issue. You can increase the PHP memory limit in WordPress via this code,
define( 'WP_MEMORY_LIMIT', '1024M' );
. Put this code into yourwp-config.php
file.Thanks!
Forum: Fixing WordPress
In reply to: Need to remove “Most Popular” widget from AMP home pageHello,
=> You can remove the “Most Popular” widget from the AMP homepage via editing the page. Otherwise, you can hide that section using this CSS code,
.amp-frontpage .amp-wp-content .sidebar.wpb_column.columns.medium-3.thb-dark-column.small-12{display: none;}
Thanks!
Forum: Fixing WordPress
In reply to: Header dissapears when i select single productHello,
=> Remove this CSS code into your stylesheet(
/wp-content/themes/frank-jewelry-store/style.css
). It works, [https://prntscr.com/r7b7jh]
=> See the screenshot, Line no. 2356 [https://prntscr.com/r7b2vc]
Line no. 1603 [https://prntscr.com/r7b4ry]Thanks!
Forum: Fixing WordPress
In reply to: White space after Header Slider with Sydney ThemeHello,
Follow the below steps to remove white space.
=>
Log into your admin area > Open your "Homepage" > Edit your homepage with the "Edit with Elementor" option
.
=> Now, you can see you already making a new section for the “Menu Anchor”. So, you can move the “Menu Anchor” tab under your particular section and remove the above(Menu Anchor) section and Save.Thanks!
Forum: Fixing WordPress
In reply to: Change location of Social media iconHello,
=> Put below CSS code into your stylesheet. See screenshot, [https://prntscr.com/r6wyst]
#navigation-sticky-wrapper .main-nav-social{line-height: normal;} #navigation-sticky-wrapper .main-nav-social .inner-header-social{padding: 19px 0;} #navigation-sticky-wrapper .main-nav-social .inner-header-social a:last-child{margin-top: 4px;}
Thanks!
Forum: Fixing WordPress
In reply to: Help me move logoHello,
You can change your
template-functions.php
.
Opentemplate-functions.php
file from/wp-content/themes/business-times/inc/
Step-1:
=> Copy this code,<div class="site-branding"> <?php if( function_exists( 'has_custom_logo' ) && has_custom_logo() ){ the_custom_logo(); } ?> <div class="text-logo"> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <?php $description = get_bloginfo( 'description', 'display' ); if ( esc_html( $description ) || is_customize_preview() ) { ?> <p class="site-description"><?php echo esc_html( $description ); /* WPCS: xss ok. */ ?></p> <?php } ?> </div> </div>
Step-2:
=> Copy above code and paste it above this code,<nav id="site-navigation" class="main-navigation">
like this,<div class="site-branding"> <?php if( function_exists( 'has_custom_logo' ) && has_custom_logo() ){ the_custom_logo(); } ?> <div class="text-logo"> <h1 class="site-title"><a href="<?php echo esc_url( home_url( '/' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a></h1> <?php $description = get_bloginfo( 'description', 'display' ); if ( esc_html( $description ) || is_customize_preview() ) { ?> <p class="site-description"><?php echo esc_html( $description ); /* WPCS: xss ok. */ ?></p> <?php } ?> </div> </div><!-- .site-branding --> <nav id="site-navigation" class="main-navigation"> <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?> </nav><!-- #site-navigation -->
Step-3:
=> Now, put below CSS code into your stylesheet. See screenshot ,[https://prntscr.com/r6wf21]header .header-top{display: none;} header .site-branding .text-logo{display: none;} header#masthead .site-branding{margin-right: 15px; display: inline-block; margin: 20px 15px 20px 0;} header nav#site-navigation{display: inline-block; vertical-align: top; width: calc(100% - 350px);}
Thanks!
Hello,
I have tested in twenty-twenty theme,it is working fine.so,please confirm which theme you have used.
please check and let me know,so i will help you accordingly.
Thanks
- This reply was modified 5 years ago by Aims Infosoft.