Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter ignacio.brenes

    (@ignaciobrenes)

    Sure thing, and thank you in advance:

    https://goo.gl/rFhfgT
    If you scroll to the bottom , you will see a post slider, under each post there is a button that says MORE. I want to change the MORE label for pretty much whatever I want. If I right click on those buttons, and inspect element, I see the <a href="https://domainname.com/apple-lanza-nuevas-mejoras-de-software/" class="main-btn btn-<strong>more</strong> btn-left">More</a> HTML code, but is not in any of the PHP files I have, not even inside the plugins folder.

    ————————————————

    Same thing in https://goo.gl/3WDOJg
    I need to change the READ MORE for something else.
    I can see the html code in the browser but I can find that line anywhere in wordpress
    <a class="element element_2 read_more" href="https://madmonkeytechnologies.com/la-tecnologia-puede-ayudar-a-reducir-el-desperdicio-de-alimentos/">Read more.</a>

    Thread Starter ignacio.brenes

    (@ignaciobrenes)

    sternadat, thank you for your answer.
    I already had that plugin installed, its says the page is page.php
    When I open that page on my text editor, there is nothing regarding the html code I need to modify to continue with the example, I do not see <a href="https://domainname.com/">View More</a>:

    <?php get_header(); ?>
    <!--------/Header--------------->
    <div class="clearfix"></div>
    <!-- Page Title Section -->
    <?php asiathemes_breadcrumbs(); ?>
    <!-- /Page Title Section -->
    <!---------Blog-Section------------------------------>
    <section class="blog-section">
      <div class="container">
         <div class="row">
    	 <!---------Blog Area------------->
    	    <div class="col-md-9">
    		 <div class="blog-page-section">
    		  <div class="blog-area animate" data-anim-type="fadeInUp" data-anim-delay="400">
    				<div class="blog-post-img">
    				<?php the_post();
    								$default_img = array('class' => "img-responsive");
    								if(has_post_thumbnail()) :?>
    					<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail('',$default_img); ?></a>
    					<?php endif; ?>
    				</div>
    				<div class="blog-post-detail">
    						<a href="<?php echo get_author_posts_url( get_the_author_meta( 'ID' ) );?>"><i class="fa fa-user"></i> <?php the_author(); ?></a>
    						&nbsp;&nbsp; <a href="#"><i class="fa fa-tag"></i><?php the_tags('','businesso'); ?></a>
    						&nbsp;&nbsp;<a href="#"><i class="fa fa-comment"></i><?php comments_popup_link( '0', '1', '%', '', '-'); ?></a>
    				<div class="blog-post-date"><span class="date"><?php echo get_the_date('j'); ?><small><?php echo get_the_date('M'); ?></small></span>
    					</div>
    				</div>
    				<div class="clear"></div>
    				   <div class="blog-post-title">
    					<div class="blog-post-title-wrapper">
    						<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
    						<p><?php the_content(); ?><p>
    
    					</div>
    				</div>
                 </div>
    
    		<!----comment Section-------->
    			<?php comments_template( '', true );?>
    			</div>
    			 </div>
      <!-----Right Sidebar------------>
    		<?php get_sidebar(); ?>
    
    		 </div>
      </div>
    </section>
    
    <div class="clearfix"></div>
    <?php get_footer(); ?>
    </div><!-- /Close of wrapper -->
    </body>
    </html>
    Thread Starter ignacio.brenes

    (@ignaciobrenes)

    Hello Davor, thank you very much for your quick response.
    The wordpress installation was made using the automated GoDaddy service, it goes to public_html
    I added a sample image https://gyzmo.co/Transfer/lion.jpg and I am able to access it. But I still cant access the parent folder https://gyzmo.co/Transfer
    My .htaccess is currently set to:

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteRule ^index\.php$ – [L]
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

Viewing 3 replies - 1 through 3 (of 3 total)