Forum Replies Created
list of topics you have created till now.
-
-
Hi, wordpress has built-in image editor. You can adjust image size with it.
Thanks
Hi, select other menu location. See in the image:

Hi, there is also wpml plugin, but not tested.
Thanks
Hi, add the shortcode to your content.
Thanks
It will be available in a week.
You are welcome.
New version is available on ThemeForest.
Hi, if you mean the middle section, change portfolio page content to top from Theme Options > Pages.
Thanks
Hi, go to your “about me” page to remove unwanted content part.
– edit your menu items by navigating to Appearance > menus.
– use search widget in the blog sidebar.
Thanks
You are welcome.
You are welcome.
Hi, please update your theme to the latest version.
Thanks
Ok. Good luck.
Ok. Good luck.
Hi, set your portfolio content to top from theme options > pages.
gabba is the assigned page title from theme options > pages > portfolio page. You can change the title from your page or use this custom css to hide it:
#portfolio .inner-page-title { display: none; }Thanks
Hi, it is easy. Please check out localization section in the theme documentation.
Thanks
Hi, please unzip the package. You will find the theme under Theme folder.
Thanks
Facebook caches url. Try again after a few days.
Note: You have a very old version of the theme. See changelog: http://themeforest.net/item/bloggy-wp-responsive-minimalist-theme/5557121
– style.css
OLD:
Version: 2.9.8NEW:
Version: 2.9.9
– functions.php
OLD #1:
$excerpt = get_post_field( 'post_content', $post_ID );
NEW #1:
$excerpt = get_post_field( 'post_content', get_the_ID(), 'attribute' );
– AND –
OLD #2:
if ( $og_description != "" ) { echo '<meta property="og:description" content="' . $og_title . '">' . "\n\n"; }NEW #2:
if ( $og_description != "" ) { echo '<meta property="og:description" content="' . $og_description . '">' . "\n\n"; }If you enable open graph from theme options > seo, you will see description text when sharing your post.
Modified files:
– functions.php
– style.css
New version is available on ThemeForest.
You are welcome.
Hi, you can use <!–nextpage–> quicktag one or more times. See: http://en.support.wordpress.com/splitting-content/nextpage
Thanks
Hi, fixed the duplicate portfolio keyword in the url. You can download the new version from ThemeForest. Install and activate your theme via wp admin.
Thanks
Hi, I see the issue, I will fix it with an update soon. Thanks for the feedback.
Hi, please update to the latest version. You can download it from ThemeForest.
Thanks
No, it is free. You can download it from ThemeForest.
– Go to: Appearance > Editor > format-standard.php
– find:
<header class="entry-header">
– edit:
<header class="entry-header"><span class="custom-post-date"><?php echo get_the_date(); ?></span>
Hi, 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.
Hi, you can find all shortcodes in the theme documentation to create them. But, if you import the sample data, all demo content will be installed on your site.
Thanks
Hi, you can edit the all-meta.php file. And, you can change your date format from settings > general > Date Format.
Thanks
Ok. Good luck.
Hi, yes your are right. It is a plugin related issue.
Hi, please try again.
Hi, the “back” link is not compatible for multilingual wp, I will try to find a solution. Thanks for the feedback.
You can hide it to use browser back button instead.
Hi, use this in your Theme Options > Style > External JS box:
<script> jQuery(document).ready(function($) { $( '.page-template-template-blog-php > .container > .row' ).prepend( '<div class="span12 blog-logo"><img alt="" src="your-image-logo-url-here" style=" max-height: 150px; "></div>' ); }); </script>Hi,
1) Latest tweets:
[latest_tweets count="" id="" include_retweets=""]
count="1"… Default 1.include_retweets="false"… true, false. Default false.id="388393979672150017"… HOW TO CREATE A VALID ID TO USE:– Go to http://www.twitter.com and sign in as normal, go to your settings page.
– Go to “Widgets” on the left hand side.
– Create a new widget for “user timeline”.
– Feel free to check “exclude replies” if you do not want replies in results.
– Now go back to settings page, and then go back to widgets page, you should see the widget you just created. Click edit.
– Now look at the URL in your web browser, you will see a long number like this: 388393979672150017
– Copy it and paste to the id field.Example:
[latest_tweets id="388393979672150017"]
2) Location map:
[map latitude="" longitude="" zoom=""]
– Visit: http://maps.google.com
– Find your location on the map.
– Fill the fields below for your location.
latitude=""longitude=""zoom=""Example:
[map latitude="-25.363882" longitude="131.044922" zoom="4"]
3) slug:
See inthe image:

You are welcome.
Hi, please update to the latest version. You can download it from ThemeForest.
Thanks
Hi, firstly update the theme to the latest version. You can download it from ThemeForest.
Thanks
Sorry, it is not possible by default.
Hi, if you add this to the top of your page, you will see it in the Template option:
<?php /* Template Name: My Custom Page */ ?>
Thanks
Hi, before changing a page to draft, check your custom theme widgets. If your page is in use, firstly drag its widget to Inactive Widgets area.
– Also, “Basında Biz” page appears over the Gallery page. Change its parameters from its widget.
Thanks
You are welcome.
Sorry, this is not possible by default.
Ok. Good luck.
You are welcome.
Hi, you can put an image to your page content with linking to your job.
Thanks
Hi,
– go to: WP Admin > Portfolio > Portfolio Tags. Every has a view link for listing.
– go to: Appearance > Widgets. Tag Cloud widget shows the portfolio tags.
– go to: Appearance > Menus. Check portfolio tags from Screen Options.
Thanks
Hi, you can change the text in two ways:
1 – via localization. (See: Theme Documentation > Localization).
-OR-
2 – edit directly:
– go to: Appearance > Editor > functions.php
– find:
<span><i class="icon-leaf"></i><?php echo __( 'MY WORKS', 'read' ); ?></span>
ICON: Change the icon name. (See: Theme Documentation > Customization > Icons).
<span><i class="icon-leaf"></i><?php echo __( 'MY WORKS', 'read' ); ?></span>Thanks