Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
hagedorn
tagDiv Member

Yes.. but if you miss one update inbetween, it’s hard to figure out what happened.
Why are you not keeping a full history on your changed_files_xxx.html file?

hagedorn
tagDiv Member

I guess it would help if you would add support for add_filter and add_action throughout your includes so that one could simply add items to your sharefile-chain rather than exhanging the whole thing or modifying your td_module_single.php file.

hagedorn
tagDiv Member

I’m using a child theme so tempering with the original theme files is something
I’d like to avoid.

I have now encapsulated the add_theme_support into an
after_setup_theme action an this seems to work. What
do you think?


function wpsites_child_theme_posts_formats(){
add_theme_support('post-formats', array('video','link'));
}
add_action( 'after_setup_theme', 'wpsites_child_theme_posts_formats', 11 );

hagedorn
tagDiv Member

I disabled all plugins excelt VC, but the error is still there. Removing the codes works.

Will this problem be fixed in the next release or do I have to make these changes over and over again?
Let me know if I can help fixing it.

hagedorn
tagDiv Member

Hi.. I managed to get the error message:

Catchable fatal error: Object of class stdClass could not be converted to string in /wp-content/themes/Newsmag/includes/wp_booster/td_block.php on line 145


// add a persistent atts based block class (crc32 of atts + block_id)
if (is_array($this->atts)) { // double check to prevent warnings if no atts
$this->add_class('td_block_id_' .
sanitize_html_class(
str_replace('-', '',
crc32(
implode($this->atts) . $this->block_id
)
)
)
);
}

hagedorn
tagDiv Member

Allright.. is there any way to change the theme-function by redefining it inside a plugin like overwriting it?

hagedorn
tagDiv Member

Hi..

depending of the post type I want to output text rather than the date.

I’ve allready implemented this on a previous installation of the theme and modified the core files to archive that. I’m currently updating the site on a developer installation and am looking for ways to not modifiy the core if possible. The child implementation has become a lot better in v2, but still doesn’t allow for all needed modifications.

Cheers

hagedorn
tagDiv Member

Sorry… I havn’t seen this whole api docs before. Maybe to blind. Thanks. I’ll figure it out 🙂

hagedorn
tagDiv Member

Hi!

I’d like to modify the existing ones. Shall I delete them first
using the API or can I change the values using an Update?

For example:

td_api_thumb::add('td_80x60',
array(
'name' => 'td_80x60',
'width' => 80,
'height' => 60,
'crop' => array('center', 'top'),
'post_format_icon_size' => 'small',
'used_on' => array(
'Block 15', 'Live search', 'tagDiv Gallery'
)
)
);

is defined in your td_config.php file. What do I have to do
when I’d like to change the width to 100 instead but like
to keep the the original name “td_80x60” as it is used allready
throughout the website.

Cheers,
Guenter

hagedorn
tagDiv Member

Thanks… Is there also a setting to center-scale it to fit while keeping the aspect ratio so that the image is croped at top/bottom or left/right? Your result images have a non-flattering aspect ratio.

hagedorn
tagDiv Member

Allright.. seems to work with a different video. I noticed though that all images in Newsmag
use differen aspect ratios. This is very disturbing, since you see more or less from the images.
Its not only two different ratios which I would have understood but almost every image uses it’s
own ration / part of the image.

So in my YouTube example I see a black bar on top of the image (while the bottom black bar is
hidden from the aspect ratio) and in another view I see both bars. Any suggestions which pairs
of modules have the same output?

hagedorn
tagDiv Member

Thanks.. but in td_wp_booster_functions.php I can’t find the search part that is mentioned above in the functions.php

hagedorn
tagDiv Member

as an additional question:

I found that the ajax search is defined here:
/includes/wp_booster/td_data_source.php

I wonder where is the non-ajax search definded, that
is used on the regular search page?

hagedorn
tagDiv Member

where can I find this in newsmag theme?

hagedorn
tagDiv Member

Dear Vickster,

I’m considering buying Toolset. Does it work with the theme from TAGDIV?

Cheers,
Guenter

hagedorn
tagDiv Member

If you use CSS to hide the “More from Author” you’re loosing the rounded edge on the right side.

Viewing 16 posts - 1 through 16 (of 16 total)