Search Results for 'block'

Results from the Forum
Radu A
tagDiv Member

hi,
the structure of the theme is complex, but try Marius solution.
if you are not a programmer try to hire one for this task from sites like: http://www.microlancer.com

Thanks for you message.
Radu A.

Bryson T
tagDiv Member

That works perfectly. Added the custom module 5 to the child theme and removed the date, author, comments/views lines as well and it looks great. Thanks.

pincpnthr
Participant
#0

How can I create a block that uses a custom post type with custom taxonomies. It appears that currently you can only create content blocks from regular categories but not from custom taxonomies.

Am I missing something?

r1kay
Participant
#0

Hi,

Does the workaround to fix the post views when using a cache plugin work with the 7 days post sort in the sidebar? I know this fix will show correct views on the top of a post page, but will it also fix the 7 days post sort order in the blocks?

And are you guys planning on integrating the ajax view count in the theme? I don’t like to install so many different plugins to fix the bugs that come with this theme… I mentioned this problem months ago and you guys said that you would fix in in one of the future updates. We’re at least 4 updates further, but the only solution you provide is using another couple of plugins to make it work, instead of fixing it wihtin in theme.

Also, I use block 2 in the sidebar to highlight some post (just like the theme’s live preview) and want to manually select the posts i want to display there. It it possible to filter the post according to post id? I was highlighting the most viewed posts with the 7 days post count but since that doesnt work i now show the most recent posts there…

academicdigital
tagDiv Member

Hi Marius,

Thanks so much for getting back to me and offering a solution. My clients are hell bent on getting a category icon showing up over the image though, I don’t think this will pacify them!

Do you think this is something an external developer could do or is the structure of the theme too complex? Anyone you could recommend?

Thanks,

Martin

academicdigital
tagDiv Member

Perfect!

Thanks 🙂

Marius
tagDiv Staff

If you want on block to, check here the modules files: http://screencast.com/t/ACP86h0cE

Marius
tagDiv Staff

Hi,
Your CSS selector is incorrect. Use this:

.meta-info .td-block-author {
    padding-left: 10px;
}
Marius
tagDiv Staff

Hi,

You can modify that block if you want, Block 8 use Module 5 to be built.

Edit module 5 like here: http://screencast.com/t/iqjZeyjB and increase the excerpt to 250 from Theme panel -> Excerpt on Module 5

Thanks for the message!

Marius
tagDiv Staff

Hi,
Do you want that only on homepage?

If yes you need to change the code a little like here: http://screencast.com/t/juHedPQjTC

$buffy .= '<div class="hide-comment">';
$buffy .= '</div>';

$buffy .= '<div class="hide-views">';
$buffy .= '</div>';

And add this CSS in theme panel -> Custom CSS

.hide-views {
    display: inline-block;
}
.hide-comment {
    display: inline-block;
}

.home .hide-views {
    display: none;
}
Radu A
tagDiv Member

hi,
can you give us the link to see the issue, also try to disable all plugins so that there are no conflicts between the theme and the plugins.

Thanks for you message.
Radu A.

Marius
tagDiv Staff

Hi,
That area doesn’t support shortcode. Wjat you can do is to add a link like: <a href="you link">Review criteria</a> http://screencast.com/t/wYsrptDj

And you will have: http://screencast.com/t/NermP73Oq

Then you can style that link if you want like a button: Use this CSS, add it in Theme panel -> Custom CSS

.td-review-desc > a {
    background-color: #444444;
    color: #FFFFFF;
    display: inline-block;
    font-size: 12px;
    margin-bottom: 4px;
    padding: 3px 9px;
}
Marius
tagDiv Staff

Hi,
Where exactly? Can you show me in a screenshot? The blocks have this option: http://screencast.com/t/2Xgr1PBM

Thanks for the message!

Marius
tagDiv Staff

Hi,

@jadmac
is everything ok now? That plugin crop the images at the size required by each module/block. All that sizes are defined in function.php here: http://screencast.com/t/fRFBmozIS if you want to change the size to a desired aspect ratio.

Marius
tagDiv Staff

Hi,
When you add a text with tile in page builder(visual compose you can switch to classic editor and copy the shortcode. You can use that shortcode in a WP text widget, here are an example: [td_text_with_title custom_title="Test block" header_color="#237f33"]

Use that shortcode.

Thanks for the message!

Marius
tagDiv Staff

Hi,
You can make this by customizing the code a little, like:

Adding a condition for each category like here: http://screencast.com/t/C3W68v7p1d1

if (is_category(1)) {
                    echo td_global_blocks::get_instance('td_ad_box')->render(array('spot_id' => 'custom_ad_1'));
                }

This example: if category ID 1 will show the custom Ad 1 AD.

To add more custom ADs replace this files: http://www.tagdiv.com/theme/users/9-custom-ad.zip

Hope this help!

osckar
tagDiv Member

Hi:

Yes, but that option only lists the most recent items. I was suggesting a new sorting option for blocks: random posts from last 24 hours or random posts from last 7 days, etc. In order to show fresh content, recent content but in a random way, but avoiding old posts from showing randomly on the frontpage.

Thanks!

Marius
tagDiv Staff

Hi,
You can add this code

<div class="slide-meta">
              <span class="slide-meta-cat">
              <?php $cat = get_the_category($post->ID); echo $cat[0]->cat_name ?>
              </span>
              <span class="slide-meta-author">
              <?php $this->get_date(); ?>
              </span>
            </div>

in module 6(Block 3 use Module 6) like here: http://screencast.com/t/nLSyTpn90pnA

and add this CSS in Theme panel -> Custom CSS

.td_mod6 .slide-meta-cat {
    background-color: #444444;
    color: #FFFFFF;
    font-size: 12px;
    padding: 3px 7px;
}

The category can’t over the image only on that module, sorry for the inconvenience. We need to change the theme structure to support that.

Result: http://screencast.com/t/IIruxXJqX

Thanks for the message!

simchris
Participant
#0

Hi,
I seem to have an issue I cannot debug, and have tried using regenerate thumbnails, auto-post-thumbnail-pro, and even deleting a featured image, and uploading new file.

E.g.,
I have 700×406 image, set as featured image, cannot get the larger image for home page slider block (large left image, 745×483). No caching. Also, a 650×350 image from older article/theme, won’t enlarge to the “featured” image size for category 700×357.

Not sure if there is some king of image/function setting blocking the moderate enlargement for use in the featured box sizes, but I have cropping “on” in the theme panel, which is needed by the WP image scaler to create larger image (“enlargement”), and have “crop to actual size” on in wp settings > media.

In media, I have thumbnails set to:
small = 100×65
medium = 700×357
large = 745×483

Anyone have an idea why I’m not able to get the enlarged versions generated? Theme should “build these” or the regen plugin “should” do this, but not getting either working.

Directory for images is writable and owned by ftpuser, not server/apache, so not a permissions issue.

Any feedback would be helpful. I am now stumped after messing with this on/off for two days. I even tried deleting ALL thumbnails (!!!) and then manually going back in and reuploading the featured images on 50 posts (OUCH!!!). So, done my due diligence on anything remotely obvious here.

Thanks, everybody.

vertexpolygon
Participant
#0

Hi,

I would like to use the sticky posts option to put some articles on top of blocks. I have used your solution mentionned here : https://forum.tagdiv.com/topic/sticky-posts/
But, unfortunatly it doesn’t work in my case.
I use :
– the block 2 to display only one category
– a small slider to the same category and featured posts
– unique articles : activated

With the previous solution, the sticky post works only when I choose the option “- All categories -” for the block 2, not when I specify a category.

Any hack to activate the sticky post with a category?
I hope 🙂

osckar
Participant
#0

Hi:

A suggestion: I was wondering if more sorting options could be included when configuring blocks, like:

1.- Random posts from last 7 days
2.- Random posts from today

For daily publications, it’s always nice to show readers fresh content when they visit the frontpage, so random posts from today would be a hit instead of just random posts that show old articles.

Thanks!

saggel
Participant
#0

I use disqus and I say it in advance, so:

In the front page, the comment bubble is not a link to lead to the comment section of the post! That’s a big problem as most of my visitors come just to comment! Can this be fixed?

Also, disqus doesn’t work properly after moving to this theme and gives this error on firebug:

Content Security Policy: The page's settings blocked the loading of a resource: An attempt to execute inline scripts has been blocked

onsubmit attribute on DIV element
cb=gapi.loaded_0 (γραμμή 32)
Content Security Policy: The page's settings blocked the loading of a resource: An attempt to execute inline scripts has been blocked

onchange attribute on DIV element
3
GET http://disqus.com/api/3.0/embed/threadDetails.js...KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

296ms	
common...8e04.js (γραμμή 3)
POST http://www.google-analytics.com/p/__utm.gif
200 OK

209ms	
ga.js (γραμμή 62)
Password fields present on an insecure (http://) page. This is a security risk that allows user login credentials to be stolen.

0
Password fields present on an insecure (http://) iframe. This is a security risk that allows user login credentials to be stolen.

0
POST http://www.google-analytics.com/p/__utm.gif
200 OK

130ms	
ga.js (γραμμή 62)
GET http://disqus.com/api/3.0/discovery/listRelated....KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

26ms	
common...8e04.js (γραμμή 3)
GET http://disqus.com/api/3.0/discovery/listTopPost....KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

56ms	
common...8e04.js (γραμμή 3)
Password fields present on an insecure (http://) page. This is a security risk that allows user login credentials to be stolen.

0
Password fields present on an insecure (http://) iframe. This is a security risk that allows user login credentials to be stolen.

0
GET http://disqus.com/api/3.0/users/details.json?use...KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

441ms	
common...8e04.js (γραμμή 3)
TypeError: a.offset is not a function

...s","common/models","common/collections","common/utils","common/strings","common/...
lounge...af02.js (γραμμή 2)
Content Security Policy: The page's settings blocked the loading of a resource: An attempt to execute inline scripts has been blocked

onsubmit attribute on DIV element
4
GET http://disqus.com/api/3.0/users/details.json?use...KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

423ms	
common...8e04.js (γραμμή 3)
GET http://disqus.com/api/3.0/users/listPosts?relate...KycjAIAk46f68Zw7C6eW8WSjZvCLXebZ7p0r1yrYDrLilk2F
200 OK

517ms

any ideas?

academicdigital
Participant
#0

Hi,

How can I make the more stories leave the page?

At the moment in the theme panel there is the option for when to allow the more stories to come in (default 400px) but I want to have the option to remove it too -at present if you scroll to the bottom of the screen it blocks the third footer widget.

Thanks,

Martin

jadmac
Participant
#0

For some reason I have two adjacent blocks that don’t seem to want to align, do you know what may be causing this?

simchris
tagDiv Member

FYI, when you download the theme files, there is clearly a file called “update_log.txt” … you can download the update zip file without having to install it on your website.

Good idea to spend some time familiarizing yourself with the files you’re downloading, as to what is in each folder and the supporting documents. Just a thought, no insult intended.

[ V 3.6 ]
– added new font system
– added support for custom font files
– added support for typekit.com fonts
– added Most Commented sort order option for widgets
– added support for font stacks
– better support for google fonts (it optimizes font delivery)
– fixed the breadcrumbs for the bbpress forum (no more 404 file missing error)
– fixed mega menu font issue
– slides work now with only one post

[ V 3.5 ]
– added 4 predefined style: SPORT, CAFE, FASHION, TECH – screenshot
– added option to uppercase the font for the Header Menu – screenshot
– added Alphabetical A -> Z sorting option
– added option to change the typography of the default Blockquote in Theme panel – screenshot
– added COLOR option for default Blockquote – screenshot
– added old sharing back – screenshot
– fixed Ad overlapping on Header Style 4
– fixed translation for Home breadcrumb
– fixed issue with video thumb downloader (sometimes it did not download the thumb)
– better megamenu handling on touch devices
– added comments on pages ( with option in theme panel – default it’s disabled )
– post views counter alternative for W3 Total Cache (with WP-PostViewer and Ajax_the_view plugins) – https://forum.tagdiv.com/wp-postviews-post-view-counter-alternative-for-w3-total-cache/

  • This reply was modified 12 years by simchris.
  • This reply was modified 12 years by simchris.
Viewing 25 results - 39,151 through 39,175 (of 39,816 total)