ahmetsali

Forum Replies Created

list of topics you have created till now.

  • ahmetsali
    Keymaster
    Posted in : Lightbox

    Hi, edit js/main.js in a text editor, and find line: 487, you will see this line;

    p.addClass('active');
    

    add this piece of code just after that line;

    setupLigtbox();
    

    and lightboxes in ajax pages should work fine then.

    ahmetsali
    Keymaster

    Hi,

    they can be possible but they require more time to customize which is unfortunately out of our support scope. You may consider hiring someone experienced to do the customizations for you at envato studio if you are not familiar to coding.

    Have a nice day.

    ahmetsali
    Keymaster

    Hi, do you mean the text editor in wordpress admin? we haven’t replaced it with anything else, it is default wordpress text editor, if you are trying to replace it by using a plugin and having issues, it is probably related to the plugin, you better contact to plugin author about this issue.

    Thanks.

    ahmetsali
    Keymaster

    Hi, edit js/main.js in theme folder in a text editor and find line 16;

    var gallery = $('.gallery');
    

    and change it to;

    var gallery = $('.gallery, .gallery-grid');
    

    this should apply masonry script on portfolio page.

    ahmetsali
    Keymaster

    Hi, I see the issue, i will make some tests on this issue and try to realize what causes the problem. I let you know when i come up with a solution. Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : logo size

    @Imathern

    Hi, try this custom css code;

    .site-title img {
        max-height: none;
    }
    
    ahmetsali
    Keymaster
    Posted in : Subscribing to blog

    Hi, there are a lot of plugins for adding a newsletter subscribe widget, i can recommend this;

    https://wordpress.org/plugins/mailchimp-for-wp/

    ahmetsali
    Keymaster

    Hi, go to “Theme Options > Blog > Excerpt” and select “Only for standard format” option.

    ahmetsali
    Keymaster

    Hi, sorry but it is not possible to have a url structure like this;

    – portfolio/department-name

    as this will conflict with portfolio single url as it is also in the same form;

    – portfolio/portfolio-single-post-name

    and wordpress doesn’t allow this kind of url structure.

    Have a nice day.

    ahmetsali
    Keymaster

    Hi, i see your point but this is how the menu script works and this issue occurs on all designs that use fixed navigation menu, btw you can disable fixed menu in “Theme Options > Style > Fixed Menu”.

    ahmetsali
    Keymaster
    Posted in : Rotating Words

    Hi, i see the issue, i will check what is causing this, i will let you know when found the solution.

    Thanks for the feedback.

    ahmetsali
    Keymaster

    @masterchi3f

    it should be working : sharing a single image in photoswipe with the share button on the top right;

    – i just checked it on our demo site and it seems to be working fine;

    http://themes.pixelwars.org/photographer/portfolio/outdoor/

    – can you try deactivating all of your plugins

    – update your theme to the latest and check again.

    if it still doesn’t work for you please provide your related page url.

    ahmetsali
    Keymaster

    @masterchi3f

    i see the issue about when sharing a gallery url on Facebook; the description part comes like [gallery columns=”9″, but it has been fixed after i disabled “Open Graph Protocol” from “theme options > seo” but facebook caches the url so you may not see the changes immediately, you may try changing the post slug that will change the url of your gallery to see the effect immediately. And about facebook not showing all images from the gallery, i think this is a facebook related thing, because all the images are there in the html code, i guess facebook gets only a limited amount of images by default. If you want to control which image to be shown on facebook, i guess you can achieve this with a plugin, a plugin that lets you choose which image should be shown for each page/post manually.

    Thank you.

    ahmetsali
    Keymaster

    good to hear that it is working.

    ahmetsali
    Keymaster

    @masterchi3f

    did you try any plugin as i mentioned in my previous post;

    “deactivate the “Open Graph Protocol” from “theme options > seo” and use a powerful open graph / seo plugin instead;

    https://wordpress.org/plugins/wordpress-seo/

    https://wordpress.org/plugins/search.php?q=og

    ahmetsali
    Keymaster

    i can’t detect the issue on safari 9.0 / mac os x 10.10.5, masonry looks fine on my side, what is your browser and os version?

    ahmetsali
    Keymaster

    sorry i haven’t experienced this before, and since it is a wordpress related thing you may try asking this topic on official wordpress forums, maybe someone knows about this topic may help you;

    https://wordpress.org/support/

    Have a nice day.

    ahmetsali
    Keymaster
    Posted in : Counter/tracker…

    Hi, just checked your page and i guess you have managed the show it.

    Have a nice day.

    ahmetsali
    Keymaster

    Hi Eva,

    i just tested your url on safari 9.0, after page load, it waits a few seconds then applies the masonry layout, i suspect a plugin might cause this delay, can you disable all of your plugin and check again.

    ahmetsali
    Keymaster

    you’re welcome, i am glad it helped.

    ahmetsali
    Keymaster

    @PeppeMilana

    Hi, i guess you are using Photographer theme, this is cvCard-wp theme forum, please create a new topic under Photographer Theme forum including your related page url;

    http://www.pixelwars.org/forums/forum/wordpress-themes/photographer/


    @Feto

    just fixed this and plan to release the update in this week.

    ahmetsali
    Keymaster

    Hi again, edit js/main.js in a text editor, at line : 299 you will see the codes related to google map, just replace it with this;

    // ------------------------------
    		// GOOGLE MAP
    		/*
    			custom map with google api
    			check out the link below for more information about api usage
    			https://developers.google.com/maps/documentation/javascript/examples/marker-simple
    		*/
    		function initializeMap() {
    			if($('.map').length) {
    				var styles = [{"featureType":"landscape","stylers":[{"saturation":-100},{"lightness":65},{"visibility":"on"}]},{"featureType":"poi","stylers":[{"saturation":-100},{"lightness":51},{"visibility":"simplified"}]},{"featureType":"road.highway","stylers":[{"saturation":-100},{"visibility":"simplified"}]},{"featureType":"road.arterial","stylers":[{"saturation":-100},{"lightness":30},{"visibility":"on"}]},{"featureType":"road.local","stylers":[{"saturation":-100},{"lightness":40},{"visibility":"on"}]},{"featureType":"transit","stylers":[{"saturation":-100},{"visibility":"simplified"}]},{"featureType":"administrative.province","stylers":[{"visibility":"off"}]},{"featureType":"water","elementType":"labels","stylers":[{"visibility":"on"},{"lightness":-25},{"saturation":-100}]},{"featureType":"water","elementType":"geometry","stylers":[{"hue":"#ffff00"},{"lightness":-25},{"saturation":-97}]}];
    				var mapCanvas = $('#map-canvas');
    				var myLatlng = new google.maps.LatLng(mapCanvas.data("latitude"),mapCanvas.data("longitude"));
    				var mapOptions = {
    					zoom: mapCanvas.data("zoom"),
    					center: myLatlng,
    					disableDefaultUI: true,
    					styles: styles
    				}
    				var map = new google.maps.Map(document.getElementById('map-canvas'), mapOptions);
    				
    				var marker = new google.maps.Marker({
    				  position: myLatlng,
    				  map: map
    		  	});
    			}
    		  
    		}
    		if($('.map').length) {
    			google.maps.event.addDomListener(window, 'load', initializeMap);
    		}
    		// ------------------------------
    
    ahmetsali
    Keymaster

    Hi, yes there is google map code in the contact page but it is commented and not shown on demo site by default, but it should work fine if you just uncomment this code piece;

    <div class="top-content">
            
        <div class="map">
            <div data-latitude="-25.363882" data-longitude="131.044922" data-zoom="5" id="map-canvas" class="map-canvas"></div>
            <script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
        </div>
    
    </div>
    
    ahmetsali
    Keymaster
    Posted in : W3C Validation

    we have just fixed this and plan to release a new update in a week. Thanks for the feedback.

    ahmetsali
    Keymaster

    Hi all, as the issues appeared more about the open graph functionality built-in the theme, we suggest you to deactivate the “Open Graph Protocol” from “theme options > seo” and use a powerful open graph / seo plugin instead;

    https://wordpress.org/plugins/wordpress-seo/

    https://wordpress.org/plugins/search.php?q=og

    ahmetsali
    Keymaster

    Hi again, i just tested this, and it looks like there is a problem with Lato font only, Lato doesn’t comes with turkish chars even with latin-extended checked, i just reported this to Google, hope they fix it soon. Also when i check with another font “Open Sans” turkish chars are properly viewed.

    Thanks for the feedback.

    ahmetsali
    Keymaster
    Posted in : W3C Validation

    Hi again, i explained you to how to get rid of the errors, about warnings as they are serving for a purpose, making the site more accessable for screen readers using aria attributes, which is a good thing so i am not willing to remove them.

    Have a nice day.

    ahmetsali
    Keymaster
    Posted in : portfolio mobile

    you’re welcome, please don’t forget to rate the theme on themeforest if you liked it, thanks.

    ahmetsali
    Keymaster
    Posted in : W3C Validation

    Hi again, you have 3 errors currently (5-6-7) and you should be able to fix them by navigating to Text tab and removing extra lines between shortcodes, and you can ignore warnings.

    ahmetsali
    Keymaster

    you can play with this custom css code;

    .header img {
        max-height: 200px;
    }
    
    ahmetsali
    Keymaster

    @lucasweb

    Hi, i just checked your url and i see that you have cropped the thumbnail of your vertical images to square like aspect ratio, but the full photo is still vertical, so the thumb and the full photo doesn’t have the same aspect ratio, you should preserve aspect ratios when generating thumbs, you can do this by resizing thumbs by only height (400px should be fine), as you can see in our demo site, vertical and horizontal images play well together;

    http://themes.pixelwars.org/photographer/portfolio/outdoor/

    ahmetsali
    Keymaster
    Posted in : Resize portfolio

    Hi, yes it is not possible to disable lightbox (zoom) when using any type of gallery.

    ahmetsali
    Keymaster
    Posted in : portfolio mobile

    Hi, you need to select your portfolio page in cvCard-Portfolio Page widget, please see this image;

    http://www.awesomescreenshot.com/image/661360/4069973cb554f2fd53f44dd32714cb92

    ahmetsali
    Keymaster
    Posted in : Ken slider image size

    Hi,

    1-) if you want your images not cropped in your ken slider, first change the animation type to “fade” in your shortcode;

    [ken_slider_wrap animation="fade"]
    

    then add this custom css code;

    .sy-box {
        max-height: none;
    }
    

    it is up to you the image size, you can add any image in any aspect ratio, and keep the one you liked.

    2-) Unfortunately, the default heading font (Montserrat) doesn’t include greek chars, so you need to choose another font that supports greek like “Open Sans” from Appearance > Customize > Fonts > Heading Font.

    Thanks.

    ahmetsali
    Keymaster
    Posted in : W3C Validation

    Hi, i just navigate to Text tab of your content editor and remove redundant line breaks and this should clear some of the errors.

    ahmetsali
    Keymaster

    you’re welcome, please don’t forget to rate the theme on themeforest if you liked it, thanks.

    ahmetsali
    Keymaster

    Hi again, i plan to release an update for this about a week.

    Thanks.

    ahmetsali
    Keymaster

    Hi, please check out this post;

    http://www.pixelwars.org/forums/topic/change-portfolio-thumbnails-opacity/#post-20504

    lower the values for making the shading darker.

    ahmetsali
    Keymaster

    Hi, you can add any custom icon as image file instead of using icon shortcode and then use this custom css code;

    .service img {
        max-height: 32px; margin: .8em;
    }
    

    you can use iconfinder to find custom icons;

    https://www.iconfinder.com/

    Thanks.

    ahmetsali
    Keymaster

    @anweb

    Hi, sorry couldn’t get what you mean, can you describe it in more details?


    @fotodrabek

    i just tested you url, it looks fine on my side, you can also check this relevant post;

    http://www.pixelwars.org/forums/topic/thumbnail-pictures-color-bad-not-sharp/

    ahmetsali
    Keymaster

    Hi, i just used the new code from Facebook Page plugin,

    https://developers.facebook.com/docs/plugins/page-plugin

    and it generated this code, it works fine in the template;

    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.5";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    
    <div class="fb-page" data-href="https://www.facebook.com/envato" data-small-header="false" data-adapt-container-width="true" data-hide-cover="false" data-show-facepile="false" data-show-posts="false"><div class="fb-xfbml-parse-ignore"><blockquote cite="https://www.facebook.com/envato"><a href="https://www.facebook.com/envato">Envato</a></blockquote></div></div>
    
    ahmetsali
    Keymaster

    @anweb

    Hi, i guess you are using “Photographer” theme, you can easily change rotate words interval by passing a parameter to shortcode;

    [rotate_words interval="1000" titles="life.,moments.,happiness.,emotions.,action.,impression.,beauty."]
    

    Thanks.

    ahmetsali
    Keymaster

    can you try using an smtp plugin like this;

    https://wordpress.org/plugins/wp-mail-smtp/

    ahmetsali
    Keymaster

    Hi, if you can get any email both on theme custom form and on contactform7’s form, then i guess it should be related to your server configuration, you can contact for your server people about this issue and see what they say about this.

    ahmetsali
    Keymaster

    Hi again, i just checked your url again, and personally i still can’t detect any shift in the colors, it looks fine to me, but if you think the resized image color is not same as the large one, it might be related with this post, please check it out;

    http://www.pixelwars.org/forums/topic/problem-with-image-colors/

    Thanks.

    ahmetsali
    Keymaster

    you’re welcome, please don’t forget to rate the theme on themeforest if you liked it, thanks.

    ahmetsali
    Keymaster
    Posted in : questions portfolio

    Hi again, you have a syntax error in this line of css code;

    .home-landing body {
        background: url('http://ajramirez.com/wp-content/uploads/2015/02/fotoportadaweb.jpg);
        background-repeat: no-repeat; background-size: cover;
    }
    

    you have a missing close quote in this piece of code which brokes the css codes that comes after that line, update your code as;

    .home-landing body {
        background: url('http://ajramirez.com/wp-content/uploads/2015/02/fotoportadaweb.jpg');
        background-repeat: no-repeat; background-size: cover;
    }
    
    ahmetsali
    Keymaster
    Posted in : Photowall text issue

    you’re welcome, please don’t forget to rate the theme on themeforest if you liked it, thanks.

    ahmetsali
    Keymaster
    Posted in : Photowall text issue

    Hi, when i checked your homepage’s source code, i see two photowall markup, this might be because of;

    – you are using both photowall shortcode and created a gallery on your homepage.
    – or you have created two galleries in your homepage.

    in both situations you need to remove one (gallery or photowall shortcode as you wish).

    ahmetsali
    Keymaster
    Posted in : questions portfolio

    Hi @bentham403,

    that code should be working, i suspect you might have some syntax error in your other custom css codes that comes before that code, can you try clearing your custom css box and only add that piece of code alone and if it is working add your other custom css codes with caution.

    Thanks.

Viewing 50 posts - 1,551 through 1,600 (of 4,763 total)